Made gussian_map get called just once rather than N times

This commit is contained in:
Matthew Allum
2003-11-14 19:27:00 +00:00
parent f0000349e7
commit 03e138e205
2 changed files with 25 additions and 18 deletions

View File

@ -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