aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
blob: a8a4c7827662960e9257bcddf3aea362428d86cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
DIRS = src c_src demo

all clean:
	@set -e ; \
		for d in $(DIRS) ; do \
		if [ -d $$d ]; then ( cd $$d && $(MAKE) $@ ) || exit 1 ; fi ; \
		done

debug:
	@set -e ; \
		for d in $(DIRS) ; do \
		if [ -d $$d ]; then ( cd $$d && $(MAKE) TYPE=debug  ) || exit 1 ; fi ; \
		done



# possibly with --with-slang-include arg
conf:
	(cd config; ./configure)