30 lines
683 B
Makefile
30 lines
683 B
Makefile
# If set to 1, the autograder
|
|
#BAD_ERROR_REPORTING_FOR_AUTOGRADER=1
|
|
|
|
CC=clang
|
|
CFLAGS=-Wall -Wextra -Wpedantic -Werror -std=c23 -D_POSIX_C_SOURCE=200809L -pthread -O2
|
|
#CFLAGS+=-Og -g -fsanitize=address,undefined
|
|
SRCS=main.c threadpool.c util.c server.c http.c
|
|
|
|
OBJS=$(SRCS:%.c=bin/%.o)
|
|
ifeq ($(BAD_ERROR_REPORTING_FOR_AUTOGRADER),1)
|
|
CFLAGS+=-DBAD_ERROR_REPORTING_FOR_AUTOGRADER=1
|
|
endif
|
|
|
|
all: httpserver
|
|
|
|
httpserver: $(OBJS)
|
|
$(CC) $(CFLAGS) -o $@ $^
|
|
|
|
# Auto-rebuild if Makefile changes
|
|
bin/%.o: %.c Makefile
|
|
@mkdir -p bin/deps/
|
|
$(CC) $(CFLAGS) -MD -MF $(patsubst %.c,bin/deps/%.d,$<) -c -o $@ $<
|
|
|
|
include $(SRCS:%.c/bin/deps/%.d)
|
|
|
|
clean:
|
|
rm -rf bin/ httpserver
|
|
|
|
.PHONY: all clean
|