summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-05-12 13:32:23 -0600
committerBrian Paul <brianp@vmware.com>2009-05-12 13:32:23 -0600
commit01c4045e9ddba0fa8e1ae65a39fe596f6b6409c1 (patch)
treecb7683d0e43753cf489238e8ef8a1a0fecb8b554
parent64db96363fda3de7fed5109b1e7302a5221ef345 (diff)
es: Makefile fixes
-rw-r--r--src/gallium/state_trackers/es/Makefile11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/gallium/state_trackers/es/Makefile b/src/gallium/state_trackers/es/Makefile
index 5b4567ed14..1bc5e08eaa 100644
--- a/src/gallium/state_trackers/es/Makefile
+++ b/src/gallium/state_trackers/es/Makefile
@@ -37,8 +37,7 @@ GLES_2_LIB_NAME = lib$(GLES_2_LIB).so
INCLUDE_DIRS = \
-Icommon \
-Imesa \
- -I$(TOP)/include \
- -I$(GALLIUM)/include
+ -I$(TOP)/include
ES1_SOURCES = \
es1/st_es1_context.c \
@@ -74,10 +73,10 @@ ES2_OBJECTS = $(ES2_SOURCES:.c=.o)
# we only need the gallium libs that the state trackers directly use:
GALLIUM_LIBS = \
- $(GALLIUM)/src/gallium/auxiliary/cso_cache/libcso_cache.a \
- $(GALLIUM)/src/gallium/auxiliary/rtasm/librtasm.a \
- $(GALLIUM)/src/gallium/auxiliary/tgsi/libtgsi.a \
- $(GALLIUM)/src/gallium/auxiliary/util/libutil.a
+ $(TOP)/src/gallium/auxiliary/cso_cache/libcso_cache.a \
+ $(TOP)/src/gallium/auxiliary/rtasm/librtasm.a \
+ $(TOP)/src/gallium/auxiliary/tgsi/libtgsi.a \
+ $(TOP)/src/gallium/auxiliary/util/libutil.a
LIBS = mesa/libmesa.a $(GALLIUM_LIBS)