Tests about a simple python3 fastcgi runner using libfcgi and the Python-C API.
python
c
wsgi
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.

Makefile 259B

1234567891011121314151617
  1. all:
  2. +make -C src
  3. doc:
  4. doxygen
  5. .PHONY: distclean clean __pycache__clean doc
  6. distclean: __pycache__clean
  7. -make -C src distclean;\
  8. rm -Rvf doc/latex doc/html doc/man
  9. clean: __pycache__clean
  10. -make -C src clean;\
  11. __pycache__clean:
  12. rm -Rvf __pycache__