clean nyma zlib building stuff
This commit is contained in:
parent
a9d1ad16b1
commit
27f9a70085
|
@ -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
|
|
@ -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
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#!/bin/sh
|
||||
./configure-for-waterbox
|
||||
make clean
|
||||
make libz.a
|
||||
make -j libz.a
|
||||
./install-for-waterbox
|
||||
|
|
|
@ -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}
|
Loading…
Reference in New Issue