13 lines
273 B
Makefile
13 lines
273 B
Makefile
CFLAGS?=-Wall -O2 -g
|
|
LDADD?=$(shell pkg-config --cflags --libs x11 xinerama)
|
|
|
|
normal:
|
|
$(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 xoat
|
|
|
|
all: proto normal |