zint-barcode-generator/Makefile

22 lines
370 B
Makefile
Raw Normal View History

2008-09-02 16:19:22 -04:00
# Make libzint and zint together
#
# make for QR Code support
# make zint_noqr for Zint without QR Code support
zint:
$(MAKE) -C backend/
$(MAKE) -C frontend/
install:
$(MAKE) install -C backend/
$(MAKE) install -C frontend/
2009-06-11 16:35:49 -04:00
uninstall:
$(MAKE) uninstall -C frontend/
$(MAKE) uninstall -C backend/
2008-09-02 16:19:22 -04:00
clean:
$(MAKE) clean -C backend/
$(MAKE) clean -C frontend/