diff options
author | Dan Nicholson <[email protected]> | 2010-04-19 20:25:17 -0700 |
---|---|---|
committer | Dan Nicholson <[email protected]> | 2010-04-19 20:25:17 -0700 |
commit | a69ef34640aa37f886b94631f7c2a91baa56a644 (patch) | |
tree | 1e8ef093922d3b0e9cd28ecabb722bedf1753529 /progs/egl/openvg/Makefile | |
parent | 02224ec4e0de8072c9d730821f88e0a00212ff50 (diff) |
egl: Fix demos to build with user specified Xlib
Commit 88be2171e7 fixed the egl demos on the stable branch, but now
they're spread out across multiple subdirectories.
Signed-off-by: Dan Nicholson <[email protected]>
Diffstat (limited to 'progs/egl/openvg/Makefile')
-rw-r--r-- | progs/egl/openvg/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/progs/egl/openvg/Makefile b/progs/egl/openvg/Makefile index 3683cb7814a..431341c8a3f 100644 --- a/progs/egl/openvg/Makefile +++ b/progs/egl/openvg/Makefile @@ -4,7 +4,7 @@ TOP = ../../.. include $(TOP)/configs/current VG_LIBS=-lm -lEGL -lOpenVG -L$(TOP)/lib -L$(TOP)/lib/gallium -INCLUDE_DIRS = -I$(TOP)/include +INCLUDE_DIRS = -I$(TOP)/include $(X11_CFLAGS) EGLUT_DIR = $(TOP)/progs/egl/eglut @@ -27,7 +27,7 @@ default: $(PROGRAMS) $(EGLUT_X11_DEMOS) $(EGLUT_SCREEN_DEMOS) lion_x11: lion.o lion-render.o $(EGLUT_DIR)/libeglut-x11.a $(CC) $(CFLAGS) $(LDFLAGS) -o $@ lion.o lion-render.o \ - -L$(EGLUT_DIR) -leglut-x11 $(VG_LIBS) -lX11 + -L$(EGLUT_DIR) -leglut-x11 $(VG_LIBS) $(X11_LIBS) lion_screen: lion.o lion-render.o $(EGLUT_DIR)/libeglut-screen.a $(CC) $(CFLAGS) $(LDFLAGS) -o $@ lion.o lion-render.o \ @@ -45,7 +45,7 @@ $(foreach demo, $(EGLUT_DEMOS), $(eval $(call eglut-demo-rule,$(demo)))) # build EGLUT demos $(EGLUT_X11_DEMOS): - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< -L$(EGLUT_DIR) -leglut-$* $(VG_LIBS) -lX11 + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< -L$(EGLUT_DIR) -leglut-$* $(VG_LIBS) $(X11_LIBS) $(EGLUT_SCREEN_DEMOS): $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< -L$(EGLUT_DIR) -leglut-$* $(VG_LIBS) |