diff options
author | marha <marha@users.sourceforge.net> | 2014-08-22 21:51:08 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2014-08-22 21:51:08 +0200 |
commit | bcb354180f20f0c410a77bd32cbf2c1e799632d5 (patch) | |
tree | 17d9af613872a12c098572c3fbebef538edf76f5 /mesalib/windows/VC8/mesa/makefile | |
parent | 8e27619ab489dece35cc4bec86950ee7729cd309 (diff) | |
download | vcxsrv-bcb354180f20f0c410a77bd32cbf2c1e799632d5.tar.gz vcxsrv-bcb354180f20f0c410a77bd32cbf2c1e799632d5.tar.bz2 vcxsrv-bcb354180f20f0c410a77bd32cbf2c1e799632d5.zip |
Compiled and synchronised
Diffstat (limited to 'mesalib/windows/VC8/mesa/makefile')
-rw-r--r-- | mesalib/windows/VC8/mesa/makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mesalib/windows/VC8/mesa/makefile b/mesalib/windows/VC8/mesa/makefile index 63f4b101b..a35b594ec 100644 --- a/mesalib/windows/VC8/mesa/makefile +++ b/mesalib/windows/VC8/mesa/makefile @@ -51,6 +51,8 @@ DEPS:=$(wildcard ..\..\..\src\mesa\swrast\*.c) \ ..\..\..\src\mesa\main\enums.c \
..\..\..\src\mesa\main\api_exec.c \
..\..\..\src\mesa\main\get_hash.h \
+ ..\..\..\src\mesa\main\format_info.c \
+ ..\..\..\src\util\format_srgb.c \
..\..\..\src\mesa\main\remap_helper.h \
..\..\..\src\mesa\drivers\dri\common\xmlpool\options.h
@@ -75,6 +77,13 @@ GET_HASH_GEN = ../../../src/mesa/main/get_hash_generator.py ..\..\..\src\mesa\main\get_hash.h: ..\..\..\src\mapi\glapi\gen\gl_and_es_API.xml ..\..\..\src\mesa\main\get_hash_params.py $(GET_HASH_GEN)
python $(GET_HASH_GEN) -f $(subst $/,/,$<) > $@
+GEN_FORMAT_INFO=../../../src/mesa/main/format_info.py
+..\..\..\src\mesa\main\format_info.c: ..\..\..\src\mesa\main\formats.csv ..\..\..\src\mesa\main\format_parser.py $(GEN_FORMAT_INFO)
+ python $(GEN_FORMAT_INFO) $< > $@
+
+..\..\..\src\util\format_srgb.c: ..\..\..\src\util\format_srgb.py
+ python $< > $@
+
REMAP_HELPER = ../../../src/mapi/glapi/gen/remap_helper.py
..\..\..\src\mesa\main\remap_helper.h: ..\..\..\src\mapi\glapi\gen\gl_and_es_API.xml $(REMAP_HELPER)
python $(REMAP_HELPER) -f $(subst $/,/,$<) > $@
|