zint/Makefile
Robin Stuart 511fadef30 Initial transfer from CVS
Transfer of version 2.3.2 from CVS repository
2010-06-10 21:52:50 +01:00

19 lines
291 B
Makefile

# 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/