diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e39b7ac --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +MODE = debug +BUILD = build --$(MODE) + +ifeq ($(MODE), debug) + BUILD = build +endif + +clean: + cargo clean + +build: + cargo $(BUILD) + mkdir -p target/$(MODE)/assets/ + cp -r src/assets/ target/$(MODE)/ + +all: build
\ No newline at end of file |