mirror of
https://github.com/gnustep/libs-back.git
synced 2025-04-25 08:51:03 +00:00
use config.status if available
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@38315 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
2f804fe716
commit
229aa7212a
1 changed files with 10 additions and 2 deletions
|
@ -62,10 +62,18 @@ after-distclean::
|
||||||
rm -f config.status config.log config.cache TAGS config.h config.make back.make
|
rm -f config.status config.log config.cache TAGS config.h config.make back.make
|
||||||
|
|
||||||
back.make: back.make.in Version configure
|
back.make: back.make.in Version configure
|
||||||
./configure
|
if [ -x config.status ]; then \
|
||||||
|
./config.status --recheck; \
|
||||||
|
else \
|
||||||
|
./configure; \
|
||||||
|
fi
|
||||||
|
|
||||||
config.mak: config.mak.in configure
|
config.mak: config.mak.in configure
|
||||||
./configure
|
if [ -x config.status ]; then \
|
||||||
|
./config.status --recheck; \
|
||||||
|
else \
|
||||||
|
./configure; \
|
||||||
|
fi
|
||||||
|
|
||||||
# Things to do before checking
|
# Things to do before checking
|
||||||
# before-check::
|
# before-check::
|
||||||
|
|
Loading…
Reference in a new issue