Make compositor compile and port it to new mesa extensions

This commit is contained in:
Kristian Høgsberg 2010-06-04 22:14:28 -04:00
parent 8286302644
commit a2ee675861
3 changed files with 53 additions and 29 deletions

View file

@ -3,7 +3,7 @@ include config.mk
subdirs = clients
libs = libwayland-server.so libwayland.so
all : $(libs) compositor subdirs
all : $(libs) compositor subdirs-all
libwayland-server.so : \
wayland.o \
@ -32,7 +32,7 @@ compositor : \
wayland-util.o
compositor : CFLAGS += $(COMPOSITOR_CFLAGS)
compositor : LDLIBS += ./libwayland-server.so $(COMPOSITOR_LIBS) -rdynamic -lrt -lEGL
compositor : LDLIBS += ./libwayland-server.so $(COMPOSITOR_LIBS) -rdynamic -lrt -lEGL -lm
subdirs-all subdirs-clean :
for f in $(subdirs); do $(MAKE) -C $$f $(@:subdirs-%=%); done