bhttp

shit http/1.0 server
git clone git://bvnf.space/bhttp.git
Log | Files | Refs

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)