summaryrefslogtreecommitdiff
path: root/otk_c/Makefile
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-12-21 13:49:57 +0000
committerDana Jansens <danakj@orodu.net>2002-12-21 13:49:57 +0000
commit55b2aaf973063796a668bc758232141c3d6f5cc9 (patch)
tree5d61fe0ac903b5130ec85997296befab7909bdf9 /otk_c/Makefile
parent16e1192e4d18cd0d32b1ab8bf38ac8d69347229d (diff)
add font
Diffstat (limited to 'otk_c/Makefile')
-rw-r--r--otk_c/Makefile13
1 files changed, 7 insertions, 6 deletions
diff --git a/otk_c/Makefile b/otk_c/Makefile
index 2e0589d6..397227ef 100644
--- a/otk_c/Makefile
+++ b/otk_c/Makefile
@@ -1,12 +1,13 @@
-prefix=/tmp/ob
-exec_prefix=$(prefix)
-libdir=$(exec_prefix)/lib
+prefix = /tmp/ob
+exec_prefix = $(prefix)
+libdir = $(exec_prefix)/lib
targets = libotk.so libotk.a
-sources = init.c display.c screeninfo.c rect.c gccache.c color.c
-headers = init.h display.h screeninfo.h rect.h gccache.h color.h
+sources = init.c display.c screeninfo.c rect.c gccache.c color.c font.c
+headers = init.h display.h screeninfo.h rect.h gccache.h color.h font.h
-CFLAGS+=-g -I/usr/gwar/include/python2.2 -W -Wall
+CFLAGS += -g -W -Wall -I/usr/gwar/include/python2.2 `pkg-config --cflags xft`
+LDFLAGS += `pkg-config --libs xft`
.PHONY: all install clean