zint-barcode-generator/Makefile
2009-11-09 09:18:08 +00:00

21 lines
370 B
Makefile

# 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/
uninstall:
$(MAKE) uninstall -C frontend/
$(MAKE) uninstall -C backend/
clean:
$(MAKE) clean -C backend/
$(MAKE) clean -C frontend/