X-Git-Url: http://git.openbox.org/?p=dana%2Fxcompmgr.git;a=blobdiff_plain;f=Makefile;h=da2fb8849078452b517e60daca4d3bc044320e2a;hp=f3c7dea35dea6efa1ef880379d1d813f3157acf3;hb=03e138e2053eb99c83c17deb115635f92afe4c5f;hpb=d98b963d75afa9d412ab56c9e2f1217cb9e1a699 diff --git a/Makefile b/Makefile index f3c7dea..da2fb88 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,14 @@ 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