remove updatemakes script, it is just an indirection calling helper.pl

This commit is contained in:
Daniel Mendler 2019-05-24 12:10:07 +02:00 committed by Steffen Jaeckel
parent 53d45ad6aa
commit d45a80ec1c
No known key found for this signature in database
GPG Key ID: AF0CB17621EDAD72
4 changed files with 3 additions and 15 deletions

View File

@ -149,7 +149,7 @@ zipup: clean astyle new_file manual poster docs
gpg -b -a ltm-$(VERSION).zip
new_file:
bash updatemakes.sh
perl helper.pl --update-makefiles || exit 1
perl dep.pl
perlcritic:

View File

@ -1,6 +1,6 @@
# MAKEFILE for MS Windows (mingw + gcc + gmake)
#
# BEWARE: variable OBJECTS is updated via ./updatemakes.sh
# BEWARE: variable OBJECTS is updated via helper.pl
### USAGE:
# Open a command prompt with gcc + gmake in PATH and start:

View File

@ -1,6 +1,6 @@
# MAKEFILE for MS Windows (nmake + Windows SDK)
#
# BEWARE: variable OBJECTS is updated via ./updatemakes.sh
# BEWARE: variable OBJECTS is updated via helper.pl
### USAGE:
# Open a command prompt with WinSDK variables set and start:

View File

@ -1,12 +0,0 @@
#!/bin/bash
./helper.pl --update-makefiles || exit 1
makefiles=(makefile makefile.shared makefile_include.mk makefile.msvc makefile.unix makefile.mingw)
vcproj=(libtommath_VS2008.vcproj)
if [ $# -eq 1 ] && [ "$1" == "-c" ]; then
git add ${makefiles[@]} ${vcproj[@]} && git commit -m 'Update makefiles'
fi
exit 0