name clash

This commit is contained in:
seanpringle
2012-09-01 13:13:52 +10:00
parent f4517bd409
commit c158419bad
5 changed files with 1238 additions and 5 deletions

View File

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