Added manual target to top-level Makefile.

This commit is contained in:
Cas Cremers
2023-02-13 16:40:44 +01:00
parent e9578bcffd
commit 4d50c3db49
2 changed files with 7 additions and 4 deletions

View File

@@ -1,10 +1,13 @@
# Make recurse into 'src' directory
.PHONY: default clean
.PHONY: default clean manual
default:
cd src; ./build.sh
manual:
cd manual; make
clean:
cd src; make clean; cd ..
cd src; make clean