gallium/u_blitter: minify depth0 when initializing last_layer
[mesa.git] / src / gallium / auxiliary / Makefile
1 TOP = ../../..
2 include $(TOP)/configs/current
3
4 LIBNAME = gallium
5
6 # get source lists
7 include Makefile.sources
8
9 C_SOURCES += $(GENERATED_SOURCES)
10
11 ifeq ($(MESA_LLVM),1)
12 C_SOURCES += \
13 $(GALLIVM_SOURCES)
14 CPP_SOURCES += \
15 $(GALLIVM_CPP_SOURCES)
16 endif
17
18
19 include ../Makefile.template
20
21 default install clean: %: subdirs-%
22
23 subdirs-%:
24 @for dir in $(SUBDIRS) ; do \
25 if [ -d $$dir ] ; then \
26 (cd $$dir && $(MAKE) $*) || exit 1; \
27 fi \
28 done
29
30 indices/u_indices_gen.c: indices/u_indices_gen.py
31 $(PYTHON2) $< > $@
32
33 indices/u_unfilled_gen.c: indices/u_unfilled_gen.py
34 $(PYTHON2) $< > $@
35
36 util/u_format_srgb.c: util/u_format_srgb.py
37 $(PYTHON2) $< > $@
38
39 util/u_format_table.c: util/u_format_table.py util/u_format_pack.py util/u_format_parse.py util/u_format.csv
40 $(PYTHON2) util/u_format_table.py util/u_format.csv > $@
41
42 # DO NOT DELETE