Changed license to LGPL v2.1.
[voodoo-lang.git] / Makefile
blob91c0354bf026657cd3ef39278e200339360afee1
1 include Makefile.cfg
3 SUBDIRS = doc lib/ruby/voodoo src test
5 compiler :
6 cd src && $(MAKE) $(MAKEFLAGS)
8 all : compiler test
10 clean :
11 for dir in $(SUBDIRS); do (cd "$$dir" && $(MAKE) clean $(MAKEFLAGS)); done
13 distclean :
14 for dir in $(SUBDIRS); do (cd "$$dir" && $(MAKE) distclean $(MAKEFLAGS)); done
15 -rm Makefile.cfg
17 install :
18 cd lib/ruby/voodoo && $(MAKE) install $(MAKEFLAGS)
19 cd src && $(MAKE) install $(MAKEFLAGS)
20 cd doc && $(MAKE) install $(MAKEFLAGS)
22 test :
23 cd test && $(MAKE) test $(MAKEFLAGS)
25 .PHONY : compiler clean distclean install test