mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-21 04:18:44 +00:00
15 lines
415 B
Bash
Executable file
15 lines
415 B
Bash
Executable file
rm -fr expat
|
|
mkdir expat
|
|
tar cf - `cat files.txt` | (cd expat; tar xf -)
|
|
files=`grep -v expat.mak files.txt`
|
|
(cd expat; flip -u $files)
|
|
mkdir expat/bin
|
|
mkdir expat/lib
|
|
xcopy bin\\xmltok.dll expat\\bin
|
|
xcopy bin\\xmlparse.dll expat\\bin
|
|
xcopy xmltok\\Release\\xmltok.lib expat\\lib
|
|
xcopy xmlparse\\Release\\xmlparse.lib expat\\lib
|
|
xcopy bin\\xmlwf.exe expat\\bin
|
|
rm -f expat.zip
|
|
zip -qr expat.zip expat
|
|
rm -fr expat
|