| 1234567891011121314151617181920212223242526272829303132 |
- TGT_DIR += $(b)pybison
- PYBISON_INC := -Iexternal/pybison/src/c -I/usr/include/python2.7
- build: $(b)pybison/bison_.so $(b)pybison/bison.py
- $(b)pybison/bison_.so: $(b)pybison/bison_.o $(b)pybison/bisondynlib-linux.o
- $(CC) $(CFLAGS) -shared -pthread -o $@ $^
- $(b)pybison/bison.py: $(d)pybison/src/python/bison.py | $(b)pybison
- ln -s `realpath $<` $@
- $(b)pybison/bisondynlib-linux.o $(b)pybison/bison_.o: | $(b)pybison
- $(CC) $(CFLAGS) -o $@ -c $< -pthread -fPIC $(PYBISON_INC)
- $(b)pybison/bisondynlib-linux.o: $(d)pybison/src/c/bisondynlib-linux.c
- $(b)pybison/bison_.o: $(b)pybison/bison_.c
- ifdef PYREX
- py2c := pyrexc
- else
- ifdef CYTHON_0_14
- py2c := cython --fast-fail --line-directives
- else
- py2c := cython -Wextra -Werror --fast-fail --line-directives
- endif
- endif
- $(b)pybison/%.c: $(d)pybison/src/pyrex/%.pyx
- $(py2c) -o $@ $<
- $(RM) $(@D)/*.so
|