2 exec_prefix = $(prefix)
3 libdir = $(exec_prefix)/lib
5 targets = libotk.so libotk.a
6 sources = init.c display.c screeninfo.c rect.c gccache.c color.c font.c \
7 timer.c timerqueue.c imagecontrol.c
8 headers = init.h display.h screeninfo.h rect.h gccache.h color.h font.h \
9 timer.h timerqueue.h imagecontrol.h
11 CFLAGS += -g -W -Wall -I/usr/gwar/include/python2.2 `pkg-config --cflags xft`
12 LDFLAGS += `pkg-config --libs xft`
14 .PHONY: all install clean
23 $(RM) $(targets) *.o core *\~ .\#*
25 libotk.so: $(sources:.c=.o)
26 $(CC) -shared -o $@ $^ $(LDFLAGS)
28 libotk.a: $(sources:.c=.o)