1
0
mirror of https://github.com/woo-j/zint.git synced 2025-01-16 11:24:12 +03:00
zint/Makefile

19 lines
291 B
Makefile
Raw Normal View History

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