Tests about a simple python3 fastcgi runner using libfcgi and the Python-C API.
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.
123456789101112 |
- #!/bin/sh
-
- [ "$1" = "clean" ] && [ -f "Makefile" ] && make distclean # pour les .o
-
- rm -fR configure aclocal.m4 autom4te.cache src/Makefile.in tests/Makefile.in Makefile.in compile depcomp install-sh missing
-
- [ "$1" = "clean" ] && exit 0
-
- libtoolize -i
- aclocal
- autoconf
- automake -a -c
|