added top level Makefile

This commit is contained in:
Juri Glass 2011-06-24 23:30:23 +02:00
parent a3311e64b6
commit 28277cbbf6

10
Makefile Normal file
View file

@ -0,0 +1,10 @@
all:
@$(MAKE) -C sml
@$(MAKE) -C examples
.PHONY: clean
clean :
@$(MAKE) -C sml clean
@$(MAKE) -C examples clean