You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
308 B
18 lines
308 B
14 years ago
|
include ../config.mk
|
||
|
|
||
|
CFLAGS += $(COMPOSITOR_CFLAGS)
|
||
|
LDLIBS += -L.. -lwayland-server $(COMPOSITOR_LIBS) -rdynamic -lrt -lEGL -lm
|
||
|
|
||
|
all : compositor
|
||
|
|
||
|
compositor : \
|
||
|
compositor.o \
|
||
|
compositor-drm.o \
|
||
|
compositor-x11.o \
|
||
|
screenshooter.o \
|
||
|
drm.o
|
||
|
|
||
|
clean :
|
||
|
rm -f compositor *.o .*.deps
|
||
|
|
||
|
install :
|