You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
http-parser/Makefile

19 lines
303 B

OPT=-g -O2
test: http_parser.o test.c
gcc $(OPT) $^ -o $@
http_parser.o: http_parser.c http_parser.h Makefile
gcc $(OPT) -c $<
http_parser.c: http_parser.rl Makefile
ragel -s -G2 $< -o $@
tags: http_parser.rl http_parser.h test.c
ctags $^
clean:
rm -f *.o http_parser.c test
.PHONY: clean