Makefile (172B)
1 2 3 4 5 6 7 8 9 10 11 12 13
.POSIX: CC = clang -fsanitize=address CFLAGS = -Wall -Wextra -pedantic -D_XOPEN_SOURCE=700 -Og -g OBJS = bhttp.o all: bhttp bhttp: $(OBJS) clean: rm -f bhttp $(OBJS)