summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/Makefile
diff options
context:
space:
mode:
authorTom Stellard <[email protected]>2012-08-24 11:48:32 -0700
committerAndreas Boll <[email protected]>2013-01-10 22:01:06 +0100
commit80d290d47ad6d29ab041d0da24ab8be1036b2e9d (patch)
treea0a116b57cda3bc786f6f2a75397cfc97a4ca9b7 /src/gallium/auxiliary/Makefile
parent047fe04750acdbc9e807bce955aa890e5d1fd268 (diff)
libgallium: Convert to automake
Diffstat (limited to 'src/gallium/auxiliary/Makefile')
-rw-r--r--src/gallium/auxiliary/Makefile47
1 files changed, 0 insertions, 47 deletions
diff --git a/src/gallium/auxiliary/Makefile b/src/gallium/auxiliary/Makefile
deleted file mode 100644
index 72208f1a7f2..00000000000
--- a/src/gallium/auxiliary/Makefile
+++ /dev/null
@@ -1,47 +0,0 @@
-TOP = ../../..
-include $(TOP)/configs/current
-
-LIBNAME = gallium
-
-# get source lists
-include Makefile.sources
-
-C_SOURCES += $(GENERATED_SOURCES)
-
-ifeq ($(MESA_LLVM),1)
-C_SOURCES += \
- $(GALLIVM_SOURCES)
-CPP_SOURCES += \
- $(GALLIVM_CPP_SOURCES)
-
-# LLVM >= 3.2 requires -fno-rtti
-ifeq ($(shell expr `echo $(LLVM_VERSION) | sed -e 's/\([0-9]\)\.\([0-9]\)/\10\2/g'` \>= 302),1)
-CXXFLAGS += -fno-rtti
-endif
-endif
-
-
-include ../Makefile.template
-
-default install clean: %: subdirs-%
-
-subdirs-%:
- @for dir in $(SUBDIRS) ; do \
- if [ -d $$dir ] ; then \
- (cd $$dir && $(MAKE) $*) || exit 1; \
- fi \
- done
-
-indices/u_indices_gen.c: indices/u_indices_gen.py
- $(PYTHON2) $< > $@
-
-indices/u_unfilled_gen.c: indices/u_unfilled_gen.py
- $(PYTHON2) $< > $@
-
-util/u_format_srgb.c: util/u_format_srgb.py
- $(PYTHON2) $< > $@
-
-util/u_format_table.c: util/u_format_table.py util/u_format_pack.py util/u_format_parse.py util/u_format.csv
- $(PYTHON2) util/u_format_table.py util/u_format.csv > $@
-
-# DO NOT DELETE