aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaymaekers Luca <raymaekers.luca@gmail.com>2024-11-03 16:24:36 +0100
committerRaymaekers Luca <raymaekers.luca@gmail.com>2024-11-03 16:24:36 +0100
commit0d175d022fff8b87628dbc3fd0ead14f6660eb20 (patch)
tree7777fb1f2925dbc393286364eff182a823e826c5
parent41d06f336732553593289cf27dddcf4e06e1e8af (diff)
Added 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