From c068f22329d5cc722622a2183bbb22eef2093df7 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Mon, 24 Aug 2026 11:16:07 +0200 Subject: initial import --- platforms/premake/Makefile | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 platforms/premake/Makefile (limited to 'platforms/premake/Makefile') diff --git a/platforms/premake/Makefile b/platforms/premake/Makefile new file mode 100644 index 0000000..50a55bc --- /dev/null +++ b/platforms/premake/Makefile @@ -0,0 +1,40 @@ +# GNU Make solution makefile autogenerated by Premake +# Type "make help" for usage help + +ifndef config + config=debug32 +endif +export config + +PROJECTS := client server + +.PHONY: all clean help $(PROJECTS) + +all: $(PROJECTS) + +client: + @echo "==== Building client ($(config)) ====" + @${MAKE} --no-print-directory -C build/client -f Makefile + +server: + @echo "==== Building server ($(config)) ====" + @${MAKE} --no-print-directory -C build/server -f Makefile + +clean: + @${MAKE} --no-print-directory -C build/client -f Makefile clean + @${MAKE} --no-print-directory -C build/server -f Makefile clean + +help: + @echo "Usage: make [config=name] [target]" + @echo "" + @echo "CONFIGURATIONS:" + @echo " debug32" + @echo " release32" + @echo "" + @echo "TARGETS:" + @echo " all (default)" + @echo " clean" + @echo " client" + @echo " server" + @echo "" + @echo "For more information, see http://industriousone.com/premake/quick-start" -- cgit v1.2.3