Files
cHTTP/Makefile
T
2025-11-21 18:30:35 +01:00

13 lines
254 B
Makefile

.PHONY: all clean example
all: chttp.c chttp.h example
chttp.c chttp.h: $(wildcard src/*.c src/*.h) misc/amalg.py Makefile
python misc/amalg.py
example: main.c chttp.c chttp.h
gcc main.c chttp.c -o example -Wfatal-errors
clean:
rm chttp.c chttp.h