create an "output" directory to copy the finished build to

This commit is contained in:
2021-08-29 16:37:15 -06:00
parent 71e9a4ff4e
commit 2cdc0a3dcc
2 changed files with 8 additions and 0 deletions

View File

@@ -18,7 +18,14 @@
all:
make -C buildutils all
make -C src all
make output
output:
mkdir output
cp src/upiwin output
cp scripts/*.py output
clean:
-rm -rf output
make -C buildutils clean
make -C src clean