Really added license. (-:
[alchemist.git] / x86 / Makefile
blob73cdaaf90f8b51ea3f1c820fc2a1f4f41a2a0965
1 SUBDIRS = doc lib test
3 lib :
4 cd lib && $(MAKE)
6 all : doc lib test
8 clean :
9 for dir in $(SUBDIRS); do (cd "$$dir" && $(MAKE) clean); done
11 distclean :
12 for dir in $(SUBDIRS); do (cd "$$dir" && $(MAKE) distclean); done
14 doc :
15 cd doc && $(MAKE)
17 test :
18 cd test && $(MAKE)
20 .PHONY : all lib clean distclean doc test