aboutsummaryrefslogtreecommitdiff
path: root/platforms/premake/Makefile
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2026-08-24 11:16:07 +0200
committerFelix Morgner <felix.morgner@gmail.com>2026-08-24 11:16:07 +0200
commitc068f22329d5cc722622a2183bbb22eef2093df7 (patch)
tree12d56c1aede67988a55e241364606bfbb4dba933 /platforms/premake/Makefile
downloadopenparsec-main.tar.xz
openparsec-main.zip
initial importHEADmain
Diffstat (limited to 'platforms/premake/Makefile')
-rw-r--r--platforms/premake/Makefile40
1 files changed, 40 insertions, 0 deletions
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"