File: Makefile

package info (click to toggle)
libctk 3.0.24.6
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,316 kB
  • ctags: 1,201
  • sloc: ansic: 10,623; sh: 10,438; makefile: 102
file content (16 lines) | stat: -rw-r--r-- 304 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
SRCS    := assert.c clist.c labelwrap.c lots.c om.c table.c
TARGETS := $(SRCS:%.c=%)
CFLAGS	+= -I/usr/lib/glib/include
LIBS    := ../ctk/.libs/libctk.a -larr -lgpm -lglib
#LIBS    := -lctk

all:	$(TARGETS)

clean:
	rm -f $(TARGETS)

%:	%.c
	$(CC) $(CFLAGS) -o $@ $^ $(LIBS)

%.c:	%.c.gz
	gzip -dc $< >$@