diff options
author | Chia-I Wu <olvaffe@gmail.com> | 2009-09-15 14:16:22 +0800 |
---|---|---|
committer | Chia-I Wu <olvaffe@gmail.com> | 2009-09-15 14:16:22 +0800 |
commit | e2ba90a9cc762cf00a168f0a59d31e7dc52fc42e (patch) | |
tree | fe3206d7602ad935296884742980f3c4d30bd867 /src/gallium/auxiliary/util/Makefile | |
parent | 11a4292d4eb515813b82b8d688a318adef66b3e6 (diff) | |
parent | b4b8800315637d9218a81c76f09df7d601710d29 (diff) |
Merge commit 'eee/mesa-es' into android
Diffstat (limited to 'src/gallium/auxiliary/util/Makefile')
-rw-r--r-- | src/gallium/auxiliary/util/Makefile | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/Makefile b/src/gallium/auxiliary/util/Makefile new file mode 100644 index 0000000000..ae8d330a78 --- /dev/null +++ b/src/gallium/auxiliary/util/Makefile @@ -0,0 +1,44 @@ +TOP = ../../../.. +include $(TOP)/configs/current + +LIBNAME = util + +C_SOURCES = \ + u_debug.c \ + u_debug_dump.c \ + u_debug_symbol.c \ + u_debug_stack.c \ + u_blit.c \ + u_cache.c \ + u_draw_quad.c \ + u_format.c \ + u_format_access.c \ + u_format_table.c \ + u_gen_mipmap.c \ + u_handle_table.c \ + u_hash_table.c \ + u_hash.c \ + u_keymap.c \ + u_linear.c \ + u_network.c \ + u_math.c \ + u_mm.c \ + u_rect.c \ + u_simple_shaders.c \ + u_snprintf.c \ + u_stream_stdc.c \ + u_stream_wd.c \ + u_surface.c \ + u_tile.c \ + u_time.c \ + u_timed_winsys.c \ + u_upload_mgr.c \ + u_simple_screen.c + +include ../../Makefile.template + +u_format_table.c: u_format_table.py u_format_parse.py u_format.csv + python u_format_table.py u_format.csv > $@ + +u_format_access.c: u_format_access.py u_format_parse.py u_format.csv + python u_format_access.py u_format.csv > $@ |