Files
xoat/Makefile
seanpringle 96af3db763 clean up
2012-09-22 17:53:20 +10:00

16 lines
302 B
Makefile

CFLAGS?=-Wall -Os -std=c99
LDADD?=`pkg-config --cflags --libs x11 xinerama`
normal:
$(CC) -o xoat xoat.c $(CFLAGS) $(LDADD) $(LDFLAGS)
$(CC) -o xoat-debug xoat.c $(CFLAGS) -g $(LDADD) $(LDFLAGS)
strip xoat
docs:
pandoc -s -w man xoat.md -o xoat.1
clean:
rm -f xoat xoat-debug
all: docs normal