Work on getting everything compiling properly in Linux.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@432 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
arcum42 2009-02-06 21:58:59 +00:00
parent 3f392e4e6e
commit 595c08df88
6 changed files with 239 additions and 223 deletions

View File

@ -16,7 +16,7 @@ export PCSX2OPTIONS="--enable-sse3 --enable-sse4 --prefix `pwd`"
#export PCSX2OPTIONS="--enable-debug --enable-devbuild --enable-sse3 --prefix `pwd`" #export PCSX2OPTIONS="--enable-debug --enable-devbuild --enable-sse3 --prefix `pwd`"
# Make sure we have plugins, and bring the normal plugins in. # Make sure we have plugins, and bring the normal plugins in.
sh fetch.sh #sh fetch.sh
option=$@ option=$@
export PCSX2PLUGINS="`pwd`/bin/plugins" export PCSX2PLUGINS="`pwd`/bin/plugins"

View File

@ -12,10 +12,25 @@ exit 1
fi fi
} }
buildplugin gs $@ #buildplugin gs $@
buildplugin cdvd $@ #buildplugin cdvd $@
buildplugin dev9 $@ #buildplugin dev9 $@
buildplugin fw $@ #buildplugin fw $@
buildplugin pad $@ #buildplugin pad $@
buildplugin spu2 $@ #buildplugin spu2 $@
buildplugin usb $@ #buildplugin usb $@
buildplugin CDVDnull $@
buildplugin dev9null $@
buildplugin FWnull $@
buildplugin USBnull $@
buildplugin zerogs $@
buildplugin zeropad $@
buildplugin zerospu2 $@
buildplugin PeopsSPU2 $@
buildplugin CDVDiso $@
buildplugin CDVDisoEFP $@
buildplugin CDVDlinuz $@

View File

@ -0,0 +1 @@
../../../3rdparty/

View File

@ -1,7 +1,7 @@
# Create a shared library libZeroGSogl # Create a shared library libZeroGSogl
AUTOMAKE_OPTIONS = foreign AUTOMAKE_OPTIONS = foreign
noinst_LIBRARIES = libZeroGSogl.a noinst_LIBRARIES = libZeroGSogl.a
INCLUDES = -I@srcdir@/common INCLUDES = -I@srcdir@/common -I@srcdir@/3rdparty
libZeroGSogl_a_CPPFLAGS = $(shell pkg-config --cflags gtk+-2.0) libZeroGSogl_a_CPPFLAGS = $(shell pkg-config --cflags gtk+-2.0)
libZeroGSogl_a_CXXFLAGS = $(shell pkg-config --cflags gtk+-2.0) libZeroGSogl_a_CXXFLAGS = $(shell pkg-config --cflags gtk+-2.0)