Files
xoat/Makefile
seanpringle 4c2868cad5 multi-head
2012-08-31 18:02:16 +10:00

13 lines
285 B
Makefile

CFLAGS?=-Wall -O2 -g
LDADD?=$(shell pkg-config --cflags --libs x11 xinerama)
normal:
$(CC) -o cerberus cerberus.c $(CFLAGS) $(LDADD) $(LDFLAGS)
proto:
cat *.c | egrep '^(void|int|char|unsigned|Window|client)' | sed -r 's/\)/);/' > proto.h
clean:
rm -f cerberus
all: proto normal