picom/Makefile

12 lines
187 B
Makefile
Raw Normal View History

2003-11-10 09:32:01 +08:00
LIBS=`pkg-config --cflags --libs xcomposite xfixes xdamage xrender` -lm
2003-11-09 15:08:23 +08:00
CFLAGS=-O -g
2003-11-15 03:32:41 +08:00
all: xcompmgr
2003-11-09 15:08:23 +08:00
xcompmgr: xcompmgr.c
$(CC) -o $@ $(CFLAGS) xcompmgr.c $(LIBS)
clean:
2003-11-15 03:32:41 +08:00
rm xcompmgr