mirror of
https://github.com/yshui/picom.git
synced 2025-02-17 15:56:21 -05:00
14 lines
273 B
Makefile
14 lines
273 B
Makefile
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
|