heptagon/Makefile
Cédric Pasteur f4aafa10d6 Added a build system for Heptagon
./configure 
make
make install
2011-10-20 18:06:41 +02:00

14 lines
202 B
Makefile

.PHONY: all install
all:
(cd compiler/; $(MAKE))
(cd lib; $(MAKE))
install:
(cd compiler; $(MAKE) install)
(cd lib; $(MAKE) install)
clean:
(cd compiler; $(MAKE) clean)
(cd lib; $(MAKE) clean)