summaryrefslogtreecommitdiff
path: root/src/glu/Makefile
blob: 4ddf09016ba8d038b2e3076258f2a82865861c87 (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
# src/glu/Makefile

TOP = ../..

include $(TOP)/configs/current


SUBDIRS = $(GLU_DIRS)


default: $(TOP)/configs/current
	@for dir in $(SUBDIRS) ; do \
		pushd $$dir ; \
		make ; \
		popd ; \
	done


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