From 037e1f89ec530c2c851dc4ab60a42c6de82e9042 Mon Sep 17 00:00:00 2001 From: sotech117 Date: Tue, 19 Sep 2023 23:06:55 -0400 Subject: fix make file --- Makefile | 16 ++++++++-------- client | Bin 34344 -> 0 bytes server | Bin 34616 -> 0 bytes snowcast_client | Bin 0 -> 34316 bytes snowcast_control | Bin 13864 -> 0 bytes snowcast_server | Bin 14176 -> 34620 bytes 6 files changed, 8 insertions(+), 8 deletions(-) delete mode 100755 client delete mode 100755 server create mode 100755 snowcast_client delete mode 100755 snowcast_control diff --git a/Makefile b/Makefile index 23d8e32..dd41959 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,13 @@ CC = gcc -# CFLAGS = -std=c99 -target x86_64-apple-darwin20 -g -# CFLAGS = -std=c99 -Wall -g - -default: all +CFLAGS = -o all: server client -server: server.c - $(CC) $(CFLAGS) -o snowcast_server server.c +server: + $(CC) $(CFLAGS) snowcast_server server.c + +client: + $(CC) $(CFLAGS) snowcast_client client.c -client: client.c - $(CC) $(CFLAGS) -o snowcast_control client.c \ No newline at end of file +clean: + rm -f server client \ No newline at end of file diff --git a/client b/client deleted file mode 100755 index be376f0..0000000 Binary files a/client and /dev/null differ diff --git a/server b/server deleted file mode 100755 index 1ef6cd4..0000000 Binary files a/server and /dev/null differ diff --git a/snowcast_client b/snowcast_client new file mode 100755 index 0000000..1e74014 Binary files /dev/null and b/snowcast_client differ diff --git a/snowcast_control b/snowcast_control deleted file mode 100755 index 5e208f3..0000000 Binary files a/snowcast_control and /dev/null differ diff --git a/snowcast_server b/snowcast_server index 75713b7..6f52889 100755 Binary files a/snowcast_server and b/snowcast_server differ -- cgit v1.2.3-70-g09d2