diff options
author | Matthew Allum <breakfast@10.am> | 2003-11-14 19:27:00 +0000 |
---|---|---|
committer | Matthew Allum <breakfast@10.am> | 2003-11-14 19:27:00 +0000 |
commit | 03e138e2053eb99c83c17deb115635f92afe4c5f (patch) | |
tree | 03fcbb6cbe9a438bd818c449351c8ca92f0f1fe5 /Makefile | |
parent | Eliminate all delays in updates; let the X server scheduling handle things. (diff) | |
download | xcman-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-- | 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 |