aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorsotech117 <michael_foiani@brown.edu>2023-09-20 04:04:22 +0000
committersotech117 <michael_foiani@brown.edu>2023-09-20 04:04:22 +0000
commit1263cbdbb6cf3ebbb157286b2bb2e488e4b931c8 (patch)
tree0538cd930e5afd840f0edef42f448d1933b03b59 /Makefile
parent5eb24f6063515e86e3e87e6fb91e6672dc14de34 (diff)
fix handshake protocol
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a5f9ec9..277de9a 100644
--- a/Makefile
+++ b/Makefile
@@ -4,10 +4,10 @@ CFLAGS = -g -I. -std=gnu99 -Wall -pthread
all: server client
-server: server.c
+server:
$(CC) $(CFLAGS) -o snowcast_server snowcast_server_concurrent.c
-client: client.c
+client:
$(CC) $(CFLAGS) -o snowcast_control client.c
$(CC) $(CFLAGS) -o snowcast_listener listener.c