mirror of https://github.com/lukechilds/node.git
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.
28 lines
666 B
28 lines
666 B
15 years ago
|
#OPT=-O0 -g -Wall -Wextra -Werror
|
||
|
OPT=-O2
|
||
|
|
||
|
test: http_parser.o test.c
|
||
|
gcc $(OPT) http_parser.o test.c -o $@
|
||
|
|
||
|
http_parser.o: http_parser.c http_parser.h Makefile
|
||
|
gcc $(OPT) -c http_parser.c
|
||
|
|
||
|
http_parser.c: http_parser.rl Makefile
|
||
|
ragel -s -G2 http_parser.rl -o $@
|
||
|
|
||
|
tags: http_parser.rl http_parser.h test.c
|
||
|
ctags $^
|
||
|
|
||
|
clean:
|
||
|
rm -f *.o http_parser.c test http_parser.tar
|
||
|
|
||
|
package: http_parser.c
|
||
|
@rm -rf /tmp/http_parser && mkdir /tmp/http_parser && \
|
||
|
cp LICENSE README.md Makefile http_parser.c http_parser.rl \
|
||
|
http_parser.h test.c /tmp/http_parser && \
|
||
|
cd /tmp && \
|
||
|
tar -cf http_parser.tar http_parser/
|
||
|
@echo /tmp/http_parser.tar
|
||
|
|
||
|
.PHONY: clean package
|