Mercurial > dropbear
diff libtommath/updatemakes.sh @ 1436:60fc6476e044
Update to libtommath v1.0
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Sat, 24 Jun 2017 22:37:14 +0800 |
parents | |
children | 8bba51a55704 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libtommath/updatemakes.sh Sat Jun 24 22:37:14 2017 +0800 @@ -0,0 +1,33 @@ +#!/bin/bash + +bash genlist.sh > tmplist + +perl filter.pl makefile tmplist +sed -e 's/ *$//' < tmp.delme > makefile +rm -f tmp.delme + +perl filter.pl makefile.icc tmplist +sed -e 's/ *$//' < tmp.delme > makefile.icc +rm -f tmp.delme + +perl filter.pl makefile.shared tmplist +sed -e 's/ *$//' < tmp.delme > makefile.shared +rm -f tmp.delme + +perl filter.pl makefile.cygwin_dll tmplist +sed -e 's/ *$//' < tmp.delme > makefile.cygwin_dll +rm -f tmp.delme + +perl filter.pl makefile.bcc tmplist +sed -e 's/\.o /.obj /g' -e 's/ *$//' < tmp.delme > makefile.bcc +rm -f tmp.delme + +perl filter.pl makefile.msvc tmplist +sed -e 's/\.o /.obj /g' -e 's/ *$//' < tmp.delme > makefile.msvc +rm -f tmp.delme + +rm -f tmplist + +# $Source$ +# $Revision$ +# $Date$