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.am 673B

1234567891011121314151617181920212223242526
  1. dist_man_MANS=
  2. if HAVE_DOXYGEN
  3. dist_man_MANS+=$(top_srcdir)/docs/man/man1/pyfcgi.1
  4. CLEANFILES = doxyfile.stamp
  5. doxyfile.stamp:
  6. $(DOXYGEN) Doxyfile; \
  7. echo Timestamp > doxyfile.stamp; \
  8. make manpage
  9. html-local: doxyfile.stamp
  10. $(top_srcdir)/docs/man/man1/pyfcgi.1: doxyfile.stamp
  11. manpage:
  12. -mkdir -p $(top_srcdir)/docs/man/man1;\
  13. cp $(top_srcdir)/docs/man/man3/pyfcgi.3 $(top_srcdir)/docs/man/man1/pyfcgi.1;\
  14. sed -i 's/^.TH "pyfcgi" 3/.TH "pyfcgi" 1/' $(top_srcdir)/docs/man/man1/pyfcgi.1;
  15. clean-local:
  16. -rm -rf $(top_srcdir)/docs/html $(top_srcdir)/docs/latex $(top_srcdir)/docs/man/man3 $(top_srcdir)/docs/man/man3 $(top_srcdir)/docs/doxygen_sqlite3.db
  17. endif