From 2d14f6a01a47363842d6fa4bc434400bf7f02c49 Mon Sep 17 00:00:00 2001 From: jordan4ibanez Date: Mon, 15 Apr 2024 05:38:21 -0400 Subject: [PATCH] Let's get more professional --- Makefile | 10 ++++++++-- .../{hackjob_copy_textures.sh => copy_textures.sh} | 0 2 files changed, 8 insertions(+), 2 deletions(-) rename important_scripts/{hackjob_copy_textures.sh => copy_textures.sh} (100%) diff --git a/Makefile b/Makefile index e7a7859c..555c872f 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,15 @@ # defaults to linux, expects you to already have made the debugging world. default: + @echo Cleaning build directory. + @rm --verbose -rf mods/ + @echo CLEANED! @echo Transpiling Forgotten Times into lua... @npx tstl @echo Successfully built Forgotten Times. @echo Copying mod conf files... @./important_scripts/move_conf_files.sh @echo Successfully copied mod conf files. - @./important_scripts/hackjob_copy_textures.sh + @./important_scripts/copy_textures.sh @echo Starting Minetest. @minetest --go --gameid forgotten-lands --world $$HOME/.minetest/worlds/debugging @@ -18,13 +21,16 @@ windows: @../../bin/minetest.exe linux: + @echo Cleaning build directory. + @rm --verbose -rf mods/ + @echo CLEANED! @echo Transpiling Forgotten Times into lua... @npx tstl @echo Successfully built Forgotten Times. @echo Copying mod conf files... @./important_scripts/move_conf_files.sh @echo Successfully copied mod conf files. - @./important_scripts/hackjob_copy_textures.sh + @./important_scripts/copy_textures.sh @echo Starting Minetest. @minetest --go --gameid forgotten-lands --world $$HOME/.minetest/worlds/debugging diff --git a/important_scripts/hackjob_copy_textures.sh b/important_scripts/copy_textures.sh similarity index 100% rename from important_scripts/hackjob_copy_textures.sh rename to important_scripts/copy_textures.sh