aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorsotech117 <michael_foiani@brown.edu>2023-09-20 23:24:05 -0400
committersotech117 <michael_foiani@brown.edu>2023-09-20 23:24:05 -0400
commit3d9c7d4c5ae135ace068ba50f6b3ae971d8e276b (patch)
tree5e391492380af5fb351d543d8fd6b17ad5871afe /Makefile
parent362250d1cb923d9ced8ea51508ace50b76050b06 (diff)
implement collecting all bits, if they don't come in one message
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 277de9a..3aae1ce 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ CFLAGS = -g -I. -std=gnu99 -Wall -pthread
all: server client
server:
- $(CC) $(CFLAGS) -o snowcast_server snowcast_server_concurrent.c
+ $(CC) $(CFLAGS) -o snowcast_server server.c
client:
$(CC) $(CFLAGS) -o snowcast_control client.c