mesa: Move get_es*.c to main/

This commit is contained in:
Kristian Høgsberg
2010-04-24 19:17:54 -04:00
parent 0034339895
commit 7aae8a592a
5 changed files with 7 additions and 12 deletions
+5
View File
@@ -30,6 +30,11 @@ main/api_exec_es1.c: main/APIspec.xml main/es_generator.py main/APIspecutil.py m
main/api_exec_es2.c: main/APIspec.xml main/es_generator.py main/APIspecutil.py main/APIspec.py
$(PYTHON2) $(PYTHON_FLAGS) main/es_generator.py -S main/APIspec.xml -V GLES2.0 > $@
main/get_es1.c: main/get_gen_es.py
$(PYTHON2) $(PYTHON_FLAGS) $< 1 > $@
main/get_es2.c: main/get_gen_es.py
$(PYTHON2) $(PYTHON_FLAGS) $< 2 > $@
######################################################################
# Helper libraries used by many drivers:
-10
View File
@@ -82,16 +82,6 @@ libes1api.a: $(ES1_API_OBJECTS)
libes2api.a: $(ES2_API_OBJECTS)
@$(MKLIB) -o es2api -static $(ES2_API_OBJECTS)
GENERATED_SOURCES := \
main/get_es1.c \
main/get_es2.c
main/get_es1.c: main/get_gen.py
$(PYTHON2) $(PYTHON_FLAGS) $< 1 > $@
main/get_es2.c: main/get_gen.py
$(PYTHON2) $(PYTHON_FLAGS) $< 2 > $@
.PHONY: clean
clean:
-rm -f $(ES1_LIBS) $(ES2_LIBS)
-2
View File
@@ -3,7 +3,6 @@ include $(MESA)/sources.mak
# LOCAL sources
LOCAL_ES1_SOURCES := \
main/get_es1.c \
main/drawtex.c \
main/es_cpaltex.c \
main/es_enable.c \
@@ -25,7 +24,6 @@ LOCAL_ES1_INCLUDES := \
-I$(MESA)/state_tracker
LOCAL_ES2_SOURCES := \
main/get_es2.c \
main/es_cpaltex.c \
glapi/glapi-es2/main/enums.c
+2
View File
@@ -39,6 +39,8 @@ MAIN_SOURCES = \
main/formats.c \
main/framebuffer.c \
main/get.c \
main/get_es1.c \
main/get_es2.c \
main/getstring.c \
main/hash.c \
main/hint.c \