aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 139ed49..da2fb88 100644
--- a/Makefile
+++ b/Makefile
@@ -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