diff options
author | Jakob Bornecrantz <[email protected]> | 2010-05-29 11:39:52 +0200 |
---|---|---|
committer | Jakob Bornecrantz <[email protected]> | 2010-05-29 13:19:13 +0200 |
commit | bbaaf823fa98c5c978aa10d61000485c10275f5a (patch) | |
tree | c3544618b90f011bc367e46a853efe8b0d69ecd4 /src/gallium/targets | |
parent | 0defc2597717162e2ba7ddeee10b4bf64ed3e9a6 (diff) |
targets/egl: Give egl targets a good build enviroment
Diffstat (limited to 'src/gallium/targets')
-rw-r--r-- | src/gallium/targets/Makefile.egl | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/gallium/targets/Makefile.egl b/src/gallium/targets/Makefile.egl index 4f8641e0561..4fa13e85ce4 100644 --- a/src/gallium/targets/Makefile.egl +++ b/src/gallium/targets/Makefile.egl @@ -33,10 +33,20 @@ endif kms_ST = $(TOP)/src/gallium/state_trackers/egl/libeglkms.a kms_LIBS = $(common_LIBS) +### Include directories +INCLUDES = \ + -I$(TOP)/include \ + -I$(TOP)/src/gallium/include \ + -I$(TOP)/src/gallium/auxiliary \ + -I$(TOP)/src/gallium/drivers \ + -I$(TOP)/src/gallium/winsys \ + -I$(TOP)/src/egl/main \ + $(LIBDRM_CFLAGS) + ##### RULES ##### .c.o: - $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@ + $(CC) -c $(INCLUDES) $(CFLAGS) $(EGL_DRIVER_DEFINES) $< -o $@ ##### TARGETS ##### |