home · contact · privacy
Further changes/fixes to the build system / file system paths.
[plomrogue] / build / build_template
diff --git a/build/build_template b/build/build_template
deleted file mode 100644 (file)
index 2f50556..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-# This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
-# or any later version. For details on its copyright, license, and warranties,
-# see the file NOTICE in the root directory of the PlomRogue source package.
-
-redo-ifchange build/compiler_flags
-. ./build/compiler_flags
-mkdir -p build/$TARGET
-mkdir -p build/common
-for file in src/${TARGET}/*.c src/common/*.c; do
-  file=build/${file#src/}
-  redo-ifchange ${file%.*}.o
-done
-gcc $CFLAGS -o $3 -g build/${TARGET}/*.o build/common/*.o $LIBRARY_LINKS