aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRaymaekers Luca <luca@keyfried.com>2024-11-03 16:24:36 +0100
committerRaymaekers Luca <raymaekers.luca@gmail.com>2024-11-03 16:24:36 +0100
commit31a7da0799920f917997ee4870774062d2048e79 (patch)
tree7777fb1f2925dbc393286364eff182a823e826c5 /Makefile
parentc2c8d2706ef0e2c50e9e36ed6bb5c806e5a4c599 (diff)
Added Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..57e6324
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+all: chatty server send
+
+clean:
+ rm -f server chatty send _id _clients
+
+chatty:
+ gcc -ggdb -Wall -pedantic -std=c99 -o chatty chatty.c
+server:
+ gcc -ggdb -Wall -pedantic -std=c99 -o server server.c
+send:
+ gcc -ggdb -Wall -pedantic -std=c99 -o send send.c