tests/Makfile.am is now generated using tests/regen.sh . bootstrap.sh has been updated. Argument parsing tests are splitted
10 lines
312 B
Bash
Executable file
10 lines
312 B
Bash
Executable file
#!/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 tests/Makefile.am
|
|
|
|
[ "$1" = "clean" ] && exit 0
|
|
|
|
./tests/regen.sh
|
|
aclocal && automake -a -c && autoconf
|