aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2024-04-05 00:57:56 +0100
committerubq323 <ubq323@ubq323.website>2024-04-05 00:57:56 +0100
commitdf26827a3f00d64f5af01271818c7c8bd7eaa387 (patch)
tree3e628dad40d74be0e331edb98454394d474ff412 /Makefile
parent1762e9f622c7a9045e6ea23a92a81d7dfa5dadda (diff)
start of networking, and packet_reader
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..411f03c
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,10 @@
+nothing:
+ true
+
+client:
+ hare run -lSDL2 client/
+
+server:
+ hare run server/
+
+.PHONY: client server