Tests about a simple python3 fastcgi runner using libfcgi and the Python-C API.
Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
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
- aclocal
- autoconf
- automake -a -c
|