summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/Makefile
blob: 5a961e96afe2340180cd6249b6361a382d381350 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# src/mesa/drivers/dri/Makefile

TOP = ../../../..

include $(TOP)/configs/current

#SUBDIRS = fb ffb gamma i810 i830 mach64 mga r128 r200 radeon sis tdfx unichrome
SUBDIRS = fb gamma i810 i830 mach64 mga r128 r200 radeon sis tdfx


default: $(LIB_DIR) subdirs


$(LIB_DIR):
	-mkdir $(LIB_DIR)


subdirs:
	@for dir in $(SUBDIRS) ; do \
		pushd $$dir ; \
		make ; \
		popd ; \
	done


clean:
	@for dir in $(SUBDIRS) ; do \
		pushd $$dir ; \
		make clean ; \
		popd ; \
	done