OSDN Git Service

llvmpipe: Fix sampling from depth textures. Respect texture compare func.
[android-x86/external-mesa.git] / progs / Makefile
1 # progs/Makefile
2
3 TOP = ..
4
5 include $(TOP)/configs/current
6
7 SUBDIRS = $(PROGRAM_DIRS)
8
9
10 default: message subdirs
11
12
13 message:
14         @echo "Making programs for" $(CONFIG_NAME)
15
16
17 subdirs:
18         @for dir in $(SUBDIRS) ; do \
19                 if [ -d $$dir ] ; then \
20                         (cd $$dir && $(MAKE)) || exit 1 ; \
21                 fi \
22         done
23
24 # Dummy install target
25 install:
26
27 clean:
28         -@for dir in $(SUBDIRS) tests ; do \
29                 if [ -d $$dir ] ; then \
30                         (cd $$dir && $(MAKE) clean) ; \
31                 fi \
32         done