From 2cdc0a3dcc512998385586b8bdf03a5673a94ccd Mon Sep 17 00:00:00 2001 From: Amy Gale Ruth Bowersox Date: Sun, 29 Aug 2021 16:37:15 -0600 Subject: [PATCH] create an "output" directory to copy the finished build to --- .gitignore | 1 + Makefile | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/.gitignore b/.gitignore index eff2a80..a28f5dc 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ src/upiwin src/splash.bin buildutils/mksplash +output/ diff --git a/Makefile b/Makefile index f951f9f..a8c321b 100644 --- a/Makefile +++ b/Makefile @@ -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