From 5f11a3294b6c448d4e03d155aa2fdf6244bb96cb Mon Sep 17 00:00:00 2001 From: Rockingcool Date: Wed, 22 Feb 2023 23:57:03 -0600 Subject: [PATCH] Added Makefile --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f6a08de --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +CC=gcc +main: main.c easysock.c + $(CC) main.c easysock.c -o proxy +allwarn: main.c easysock.c + $(CC) -Wall main.c easysock.c -o proxy