mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 20:08:06 +02:00
mesa: Move get_es*.c to main/
This commit is contained in:
parent
381ccb50b9
commit
98227f3181
5 changed files with 7 additions and 12 deletions
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -83,16 +83,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)
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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 \
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue