From 9e81312f63233f7a91ff136ee62f6ab59cd80f32 Mon Sep 17 00:00:00 2001 From: James Clark Date: Sun, 21 Jun 1998 08:22:49 +0000 Subject: [PATCH] Initial revision --- expat/makedist.ksh | 15 +++++++++++++++ expat/sample/build.bat | 5 +++++ 2 files changed, 20 insertions(+) create mode 100755 expat/makedist.ksh create mode 100755 expat/sample/build.bat diff --git a/expat/makedist.ksh b/expat/makedist.ksh new file mode 100755 index 00000000..9447766c --- /dev/null +++ b/expat/makedist.ksh @@ -0,0 +1,15 @@ +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 diff --git a/expat/sample/build.bat b/expat/sample/build.bat new file mode 100755 index 00000000..339acacb --- /dev/null +++ b/expat/sample/build.bat @@ -0,0 +1,5 @@ +@echo off +set LIB=..\xmlparse\Release;..\xmltok\Release;..\lib;%LIB% +set INCLUDE=..\xmlparse;..\xmltok;%INCLUDE% +set CL=/nologo /DXMLTOKAPI=__declspec(dllimport) /DXMLPARSEAPI=__declspec(dllimport) xmlparse.lib xmltok.lib +cl /Fe..\bin\elements elements.c -- 2.40.0