Removed MAKEFLAGS from Makefiles
[voodoo-lang.git] / Makefile
blob30db14b90189700a2bfe88906ee2f7e455448132
1 include Makefile.cfg
3 SUBDIRS = doc lib/ruby/voodoo src test
5 default : lib compiler
7 all : compiler test rdoc
9 clean :
10 for dir in $(SUBDIRS); do (cd "$$dir" && $(MAKE) clean); done
12 compiler : lib
13 cd src && $(MAKE)
15 distclean :
16 for dir in $(SUBDIRS); do (cd "$$dir" && $(MAKE) distclean); done
17 -rm Makefile.cfg
19 install :
20 cd lib/ruby && $(MAKE) install
21 cd src && $(MAKE) install
22 cd doc && $(MAKE) install
24 lib :
25 cd lib/ruby/voodoo && $(MAKE)
27 rdoc :
28 cd doc && $(MAKE) rdoc
30 test :
31 cd test && $(MAKE) test
33 Makefile.cfg : configure
34 ./configure
36 .PHONY : all compiler clean default distclean install lib rdoc test