From 3918dc1da96179669cb435464b8c220b552acee8 Mon Sep 17 00:00:00 2001 From: cdricms <36056008+cdricms@users.noreply.github.com> Date: Thu, 7 Nov 2024 12:06:27 +0100 Subject: [PATCH] Removed makefiles --- .gitignore | 1 + Makefile | 55 ------------------------------------------------------ 2 files changed, 1 insertion(+), 55 deletions(-) delete mode 100644 Makefile diff --git a/.gitignore b/.gitignore index 3edf13e..43ebf64 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ bin obj *.make +Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index 9d871db..0000000 --- a/Makefile +++ /dev/null @@ -1,55 +0,0 @@ -# GNU Make workspace makefile autogenerated by Premake - -ifndef config - config=debug -endif - -ifndef verbose - SILENT = @ -endif - -ifeq ($(config),debug) - CWebLibrary_config = debug - cweb_config = debug -endif -ifeq ($(config),release) - CWebLibrary_config = release - cweb_config = release -endif - -PROJECTS := CWebLibrary cweb - -.PHONY: all clean help $(PROJECTS) - -all: $(PROJECTS) - -CWebLibrary: -ifneq (,$(CWebLibrary_config)) - @echo "==== Building CWebLibrary ($(CWebLibrary_config)) ====" - @${MAKE} --no-print-directory -C . -f CWebLibrary.make config=$(CWebLibrary_config) -endif - -cweb: CWebLibrary -ifneq (,$(cweb_config)) - @echo "==== Building cweb ($(cweb_config)) ====" - @${MAKE} --no-print-directory -C . -f cweb.make config=$(cweb_config) -endif - -clean: - @${MAKE} --no-print-directory -C . -f CWebLibrary.make clean - @${MAKE} --no-print-directory -C . -f cweb.make clean - -help: - @echo "Usage: make [config=name] [target]" - @echo "" - @echo "CONFIGURATIONS:" - @echo " debug" - @echo " release" - @echo "" - @echo "TARGETS:" - @echo " all (default)" - @echo " clean" - @echo " CWebLibrary" - @echo " cweb" - @echo "" - @echo "For more information, see https://github.com/premake/premake-core/wiki" \ No newline at end of file