clean nyma zlib building stuff

This commit is contained in:
zeromus 2020-06-20 19:38:55 -04:00
parent a9d1ad16b1
commit 27f9a70085
4 changed files with 7 additions and 17 deletions

View File

@ -1,3 +1,7 @@
# These are already ignored, but for some reason vscode won't pick it up
# and stop showing me things I don't want to see without this
/obj
/zlib/zlib.pc
/zlib/Makefile
/zlib/configure.log
/zlib/libz.a

View File

@ -1,5 +1,4 @@
#!/bin/sh
# we left this here so it could turn into other deps-building if need be
cd zlib
./configure-for-waterbox
make
./install-for-waterbox
./do-everything-for-waterbox

View File

@ -1,5 +1,5 @@
#!/bin/sh
./configure-for-waterbox
make clean
make libz.a
make -j libz.a
./install-for-waterbox

View File

@ -1,13 +0,0 @@
prefix=/mnt/c/Develop/BizHawk/waterbox/sysroot
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
sharedlibdir=${libdir}
includedir=${prefix}/include
Name: zlib
Description: zlib compression library
Version: 1.2.11
Requires:
Libs: -L${libdir} -L${sharedlibdir} -lz
Cflags: -I${includedir}