diff options
author | sotech117 <michael_foiani@brown.edu> | 2023-09-23 22:25:42 +0000 |
---|---|---|
committer | sotech117 <michael_foiani@brown.edu> | 2023-09-23 22:25:42 +0000 |
commit | 61d649e615112c0c70cefce0e4489e041b8e3c75 (patch) | |
tree | 7532cfbf98e05e8615e95a321a3e020517ba4610 | |
parent | e3f603ff96fd434fd220459dab8d63c0516f4e54 (diff) |
revert makefile
-rw-r--r-- | Makefile | 17 | ||||
-rwxr-xr-x | snowcast_control | bin | 34893 -> 22384 bytes | |||
-rwxr-xr-x | snowcast_listener | bin | 34270 -> 19120 bytes | |||
-rwxr-xr-x | snowcast_server | bin | 54188 -> 45184 bytes |
4 files changed, 12 insertions, 5 deletions
@@ -1,14 +1,21 @@ + CC = gcc -CFLAGS = -o +# CFLAGS = -std=c99 -target x86_64-apple-darwin20 -g +CFLAGS = -g -I. -std=gnu99 -Wall -pthread all: server client server: - $(CC) $(CFLAGS) snowcast_server server.c + $(CC) $(CFLAGS) -o snowcast_server server.c client: - $(CC) $(CFLAGS) snowcast_control client.c - $(CC) $(CFLAGS) snowcast_listener listener.c + $(CC) $(CFLAGS) -o snowcast_control client.c + $(CC) $(CFLAGS) -o snowcast_listener listener.c + +# new: +# $(CC) $(CFLAGS) -o s snowcast_server_concurrent.c +# $(CC) $(CFLAGS) -o l listener.c +# $(CC) $(CFLAGS) -o c client.c clean: - rm -f server client + rm -fv server client diff --git a/snowcast_control b/snowcast_control Binary files differindex e3d29cd..5905ab1 100755 --- a/snowcast_control +++ b/snowcast_control diff --git a/snowcast_listener b/snowcast_listener Binary files differindex d15c2ac..3e47e13 100755 --- a/snowcast_listener +++ b/snowcast_listener diff --git a/snowcast_server b/snowcast_server Binary files differindex 51f53e7..7897cb3 100755 --- a/snowcast_server +++ b/snowcast_server |