Reinstated Makefiles and updated readme.

This commit is contained in:
hooper114
2010-03-01 22:34:35 +00:00
parent fcbbf43204
commit 2e001b160d
8 changed files with 337 additions and 30 deletions

18
Makefile Normal file
View File

@ -0,0 +1,18 @@
# Make libzint and zint together
zint:
$(MAKE) -C backend/
$(MAKE) -C frontend/
install:
$(MAKE) install -C backend/
$(MAKE) install -C frontend/
uninstall:
$(MAKE) uninstall -C frontend/
$(MAKE) uninstall -C backend/
clean:
$(MAKE) clean -C backend/
$(MAKE) clean -C frontend/