create an "output" directory to copy the finished build to
This commit is contained in:
parent
71e9a4ff4e
commit
2cdc0a3dcc
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -3,3 +3,4 @@
|
||||||
src/upiwin
|
src/upiwin
|
||||||
src/splash.bin
|
src/splash.bin
|
||||||
buildutils/mksplash
|
buildutils/mksplash
|
||||||
|
output/
|
||||||
|
|
7
Makefile
7
Makefile
|
@ -18,7 +18,14 @@
|
||||||
all:
|
all:
|
||||||
make -C buildutils all
|
make -C buildutils all
|
||||||
make -C src all
|
make -C src all
|
||||||
|
make output
|
||||||
|
|
||||||
|
output:
|
||||||
|
mkdir output
|
||||||
|
cp src/upiwin output
|
||||||
|
cp scripts/*.py output
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
-rm -rf output
|
||||||
make -C buildutils clean
|
make -C buildutils clean
|
||||||
make -C src clean
|
make -C src clean
|
||||||
|
|
Loading…
Reference in New Issue
Block a user