Skip to content

Commit

Permalink
Another missing file in another build flow
Browse files Browse the repository at this point in the history
  • Loading branch information
treloret committed Jul 7, 2024
1 parent 65cdea0 commit 7a1c50c
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions vs/zlib/build-dosbox.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!/usr/bin/env bash
rm -Rfv linux-host || exit 1
mkdir -p linux-host || exit 1

rm -Rfv linux-build || exit 1
mkdir -p linux-build || exit 1

chmod +x configure || exit 1

srcdir="`pwd`"
instdir="`pwd`/linux-host"

cd linux-build || exit 1

../configure || exit 1
make -j || exit 1

mkdir ../linux-host/include || exit 1
cp -v *.h ../linux-host/include || exit 1

mkdir ../linux-host/lib || exit 1
cp -v *.a ../linux-host/lib || exit 1

0 comments on commit 7a1c50c

Please sign in to comment.