File tree Expand file tree Collapse file tree 5 files changed +561
-580
lines changed Expand file tree Collapse file tree 5 files changed +561
-580
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ setuptools-*
1010.svn /*
1111.DS_Store
1212* .so
13+ http_parser /parser.so
1314http_parser.egg-info
1415nohup.out
1516.coverage
Original file line number Diff line number Diff line change @@ -3,5 +3,6 @@ include LICENSE
33include NOTICE
44include README.rst
55include THANKS
6+ include Makefile.ext
67recursive-include http_parser *
78recursive-include examples *
Original file line number Diff line number Diff line change 1+ # This file is renamed to "Makefile.ext" in release tarballs so that
2+ # setup.py won't try to run it. If you want setup.py to run "make"
3+ # automatically, rename it back to "Makefile".
4+
5+ all : http_parser/parser.c
6+
7+ http_parser/parser.c : http_parser/parser.pyx
8+ cython -o http_parser.parser.c http_parser/parser.pyx
9+ mv http_parser.parser.c http_parser/parser.c
10+
11+ clean :
12+ rm -f http_parser/parser.c
13+
14+
15+ .PHONY : clean all
You can’t perform that action at this time.
0 commit comments