clean tree

This commit is contained in:
Christopher Jeffrey
2011-11-06 18:20:45 -06:00
parent 5f63244a81
commit de8b773387
12 changed files with 54 additions and 101 deletions

30
Makefile Normal file
View File

@ -0,0 +1,30 @@
PACKAGES = x11 xcomposite xfixes xdamage xrender
LIBS = `pkg-config --libs ${PACKAGES}` -lm
INCS = `pkg-config --cflags ${PACKAGES}`
CFLAGS = -Wall
PREFIX = /usr/local
MANDIR = ${PREFIX}/share/man/man1
OBJS=compton.o
.c.o:
$(CC) $(CFLAGS) $(INCS) -c $*.c
compton: $(OBJS)
$(CC) $(CFLAGS) -o $@ $(OBJS) $(LIBS)
$(OBJS): compton.h
install: compton
@cp -t ${PREFIX}/bin compton
@[ -d "${MANDIR}" ] \
&& cp -t "${MANDIR}" compton.1
uninstall:
@rm -f ${PREFIX}/compton
@rm -f ${MANDIR}/compton.1
clean:
rm -f $(OBJS) compton
.PHONY: uninstall clean