aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMatthew Allum <breakfast@10.am>2003-11-14 19:27:00 +0000
committerMatthew Allum <breakfast@10.am>2003-11-14 19:27:00 +0000
commit03e138e2053eb99c83c17deb115635f92afe4c5f (patch)
tree03fcbb6cbe9a438bd818c449351c8ca92f0f1fe5 /Makefile
parentEliminate all delays in updates; let the X server scheduling handle things. (diff)
downloadxcman-03e138e2053eb99c83c17deb115635f92afe4c5f.tar.gz
xcman-03e138e2053eb99c83c17deb115635f92afe4c5f.tar.bz2
xcman-03e138e2053eb99c83c17deb115635f92afe4c5f.tar.xz
Made gussian_map get called just once rather than N times
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