mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-20 02:05:11 -04:00
improved make process
This commit is contained in:
parent
cf80e9c86c
commit
a9bdb038b5
1 changed files with 21 additions and 0 deletions
21
Makefile
Normal file
21
Makefile
Normal file
|
@ -0,0 +1,21 @@
|
|||
# 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:
|
||||
$(MAKE) WITHOUT_QR=true -C backend/
|
||||
$(MAKE) -C frontend/
|
||||
|
||||
install:
|
||||
$(MAKE) install -C backend/
|
||||
$(MAKE) install -C frontend/
|
||||
|
||||
clean:
|
||||
$(MAKE) clean -C backend/
|
||||
$(MAKE) clean -C frontend/
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue