summaryrefslogtreecommitdiff
path: root/otk_c/Makefile
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-01-17 06:40:00 +0000
committerDana Jansens <danakj@orodu.net>2003-01-17 06:40:00 +0000
commit6188650ce975e287c7c8644927cd5d01e7cc7baa (patch)
tree6396de81dbb9ef56f39c24a062b93e4c896a5773 /otk_c/Makefile
parent58ff3f35c2b712ec92b093ffd8b96331615f546a (diff)
rm my lucid experiment
Diffstat (limited to 'otk_c/Makefile')
-rw-r--r--otk_c/Makefile29
1 files changed, 0 insertions, 29 deletions
diff --git a/otk_c/Makefile b/otk_c/Makefile
deleted file mode 100644
index f6cb0c54..00000000
--- a/otk_c/Makefile
+++ /dev/null
@@ -1,29 +0,0 @@
-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 font.c \
- timer.c timerqueue.c imagecontrol.c
-headers = init.h display.h screeninfo.h rect.h gccache.h color.h font.h \
- timer.h timerqueue.h imagecontrol.h
-
-CFLAGS += -g -W -Wall -I/usr/gwar/include/python2.2 `pkg-config --cflags xft`
-LDFLAGS += `pkg-config --libs xft`
-
-.PHONY: all install clean
-
-all: $(targets)
-
-install: $(targets)
- install -d $(libdir)
- install $^ $(libdir)
-
-clean:
- $(RM) $(targets) *.o core *\~ .\#*
-
-libotk.so: $(sources:.c=.o)
- $(CC) -shared -o $@ $^ $(LDFLAGS)
-
-libotk.a: $(sources:.c=.o)
- $(AR) -cr $@ $^