blob: 323d2e37c0bba08af0f59cb4e10cddf563d9922c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
CC ?= clang
all: http
http: main.c http_parser.bc
$(CC) -g3 -flto -Os -fvisibility=hidden -Wall -I. http_parser.c main.c -o $@
http_parser.bc: index.ts
npx ts-node $<
.PHONY = all
|