diff options
author | Charadon <dev@iotib.net> | 2022-06-16 22:32:08 -0400 |
---|---|---|
committer | Charadon <dev@iotib.net> | 2022-06-16 22:32:08 -0400 |
commit | 2a9a5727d6b2ab63e1714b9a4721e771581eec8f (patch) | |
tree | c499362cbca5e0a389e8ea3ea0b332bc27c5540c /Makefile | |
parent | 9fe18929b324b2b35656b4027937a10e5e0a88fb (diff) | |
download | Pong-C-2a9a5727d6b2ab63e1714b9a4721e771581eec8f.tar.gz |
Changed build settings, and decided to include the makefile premake generates
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5a0147d --- /dev/null +++ b/Makefile @@ -0,0 +1,44 @@ +# Alternative GNU Make workspace makefile autogenerated by Premake + +ifndef config + config=release +endif + +ifndef verbose + SILENT = @ +endif + +ifeq ($(config),release) + Pong_config = release + +else + $(error "invalid configuration $(config)") +endif + +PROJECTS := Pong + +.PHONY: all clean help $(PROJECTS) + +all: $(PROJECTS) + +Pong: +ifneq (,$(Pong_config)) + @echo "==== Building Pong ($(Pong_config)) ====" + @${MAKE} --no-print-directory -C . -f Pong.make config=$(Pong_config) +endif + +clean: + @${MAKE} --no-print-directory -C . -f Pong.make clean + +help: + @echo "Usage: make [config=name] [target]" + @echo "" + @echo "CONFIGURATIONS:" + @echo " release" + @echo "" + @echo "TARGETS:" + @echo " all (default)" + @echo " clean" + @echo " Pong" + @echo "" + @echo "For more information, see https://github.com/premake/premake-core/wiki" \ No newline at end of file |