diff options
author | sotech117 <michael_foiani@brown.edu> | 2023-09-14 19:16:23 -0400 |
---|---|---|
committer | sotech117 <michael_foiani@brown.edu> | 2023-09-14 19:16:23 -0400 |
commit | 663580b36a1b2590b7e706baa798e130297e88ee (patch) | |
tree | 3202db0b4e4b50c1d19390ae570ad0ef668cf077 /Makefile | |
parent | bbfbcc6c936b16568d96619f02f8bb081c190b2a (diff) |
pass all tests on warmup
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,13 +1,13 @@ CC = gcc -CFLAGS = -std=c99 -target x86_64-apple-darwin20 -g -RM = rm -f +# CFLAGS = -std=c99 -target x86_64-apple-darwin20 -g +# CFLAGS = -std=c99 -Wall -g default: all all: server client server: server.c - $(CC) $(CFLAGS) -o server server.c + $(CC) $(CFLAGS) -o snowcast_server server.c client: client.c - $(CC) $(CFLAGS) -o client client.c
\ No newline at end of file + $(CC) $(CFLAGS) -o snowcast_control client.c
\ No newline at end of file |