1
0
mirror of http://galexander.org/git/simplesshd.git synced 2024-11-13 18:58:57 +00:00
simplesshd/dropbear/libtomcrypt/updatemakes.sh

22 lines
424 B
Bash
Raw Normal View History

2014-12-10 21:56:49 +00:00
#!/bin/bash
bash genlist.sh > tmplist
perl filter.pl makefile tmplist
mv -f tmp.delme makefile
perl filter.pl makefile.icc tmplist
mv -f tmp.delme makefile.icc
perl filter.pl makefile.shared tmplist
mv -f tmp.delme makefile.shared
perl filter.pl makefile.unix tmplist
mv -f tmp.delme makefile.unix
perl filter.pl makefile.msvc tmplist
sed -e 's/\.o /.obj /g' < tmp.delme > makefile.msvc
rm -f tmplist
rm -f tmp.delme