diff --git a/Makefile b/Makefile index 54fdb36..4dd66ec 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,12 @@ -CC=/usr/bin/clang +CC = /usr/bin/clang +CFLAGS = -g -Wall -all: webserver.c - $(CC) webserver.c -o webserver +TARGET = server + +all: $(TARGET) + +$(TARGET): src/$(TARGET).c + $(CC) $(CFLAGS) -o $(TARGET) src/$(TARGET).c + +clean: + $(RM) $(TARGET) diff --git a/server b/server index 35a6a6b..fecc90c 100755 Binary files a/server and b/server differ