all repos — openbox @ edc47eb5580babdca6547989c1cb5cdf317f4835

openbox fork - make it a bit more like ryudo

otk_c/Makefile (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
prefix=/tmp/ob
libdir=$(prefix)/lib

targets = libotk.so libotk.a
sources = display.c
headers = display.h

CFLAGS+=-I/usr/gwar/include/python2.2

.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 $@ $^