summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorxengineering <mail2xengineering@protonmail.com>2021-06-13 09:46:24 +0200
committerxengineering <mail2xengineering@protonmail.com>2021-06-13 09:46:24 +0200
commitc015034ba2e0bfd8464ae444792552a4b354eb0d (patch)
treeb22dd83105ef795974b62b74917084d07c636280 /Makefile
parent6df5b35600e6aae6e676e2ba29eeaaf88bf9ff9b (diff)
downloadbirdscan-c015034ba2e0bfd8464ae444792552a4b354eb0d.tar
birdscan-c015034ba2e0bfd8464ae444792552a4b354eb0d.tar.zst
birdscan-c015034ba2e0bfd8464ae444792552a4b354eb0d.zip
Offer debug Make Target
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7e3e517..48af7e6 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@
DESTDIR="" # leave empty for the current system or provide a fakeroot here
PREFIX="/usr"
-.PHONY: all clean install
+.PHONY: all clean install debug
all:
make -C python all
@@ -23,3 +23,6 @@ install: all
install -Dm 644 data/css/birdscan.css $(DESTDIR)$(PREFIX)/share/birdscan/css/birdscan.css
install -Dm 644 data/js/birdscan.js $(DESTDIR)$(PREFIX)/share/birdscan/js/birdscan.js
+debug: all
+ make -C src debug
+