gallium: Use align_free to free aligned memory.
[mesa.git] / src / mesa / pipe / Makefile
1 TOP = ../../..
2 include $(TOP)/configs/current
3
4
5 ifeq ($(CONFIG_NAME), linux-cell)
6 CELL_DIR = cell
7 endif
8
9 ifeq ($(CONFIG_NAME), linux-llvm)
10 LLVM_DIR = llvm
11 endif
12
13 SUBDIRS = softpipe i915simple i965simple nv30 nv40 nv50 failover pipebuffer \
14 $(CELL_DIR) $(LLVM_DIR)
15
16
17 default: subdirs
18
19
20 subdirs:
21 @for dir in $(SUBDIRS) ; do \
22 if [ -d $$dir ] ; then \
23 (cd $$dir && $(MAKE)) || exit 1 ; \
24 fi \
25 done
26
27
28 clean:
29 rm -f `find . -name \*.[oa]`