aboutsummaryrefslogblamecommitdiffstats
path: root/Makefile
blob: da2fb8849078452b517e60daca4d3bc044320e2a (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                       
 

            

                       


                                                


                                                 
      
                             
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 mbcompmgr