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
|
|
|
|
2003-11-11 02:34:35 +08:00
|
|
|
CFLAGS=-O -g
|
|
|
|
|
2003-11-15 03:32:41 +08:00
|
|
|
all: xcompmgr
|
2003-11-15 03:27:00 +08:00
|
|
|
|
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
|