zint/Makefile

22 lines
361 B
Makefile
Raw Normal View History

2008-09-03 08:19:22 +12: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/
zint_noqr:
2008-09-19 02:42:50 +12:00
$(MAKE) NO_QR=true -C backend/
2008-09-03 08:19:22 +12:00
$(MAKE) -C frontend/
install:
$(MAKE) install -C backend/
$(MAKE) install -C frontend/
clean:
$(MAKE) clean -C backend/
$(MAKE) clean -C frontend/