diff options
Diffstat (limited to '')
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -2,8 +2,13 @@ LIBS=`pkg-config --cflags --libs xcomposite xfixes xdamage xrender` -lm CFLAGS=-O -g +all: xcompmgr mbcompmgr + xcompmgr: xcompmgr.c $(CC) -o $@ $(CFLAGS) xcompmgr.c $(LIBS) +mbcompmgr: mbcompmgr.c + $(CC) -o $@ $(CFLAGS) mbcompmgr.c $(LIBS) + clean: - rm xcompmgr + rm xcompmgr mbcompmgr |