parent
db91ab65fe
commit
191d8cf5e5
9 changed files with 137 additions and 7 deletions
@ -0,0 +1,21 @@ |
||||
./bootstrap.sh && \ |
||||
LDFLAGS="-L/usr/lib32 -m32" CXXFLAGS="-m32" ./configure \ |
||||
--libdir=/usr/local/lib32 \ |
||||
--build=x86_64 \ |
||||
--host=i386 && \ |
||||
make && \ |
||||
sudo make install && \ |
||||
make clean && \ |
||||
LDFLAGS="-L/opt/local/i586-mingw32msvc/lib" \ |
||||
CPPFLAGS="-I/opt/local/i586-mingw32msvc/include" \ |
||||
./configure \ |
||||
--prefix=/opt/local/i586-mingw32msvc \ |
||||
--build=x86_64 \ |
||||
--host=i586-mingw32msvc && \ |
||||
make && \ |
||||
sudo make install && \ |
||||
make clean && \ |
||||
./configure && \ |
||||
make check && \ |
||||
sudo make install |
||||
|
@ -1,5 +1,8 @@ |
||||
nobase_include_HEADERS = autoproxy.hxx proxyface/unix.hxx \ |
||||
proxyface/windoze.hxx proxyface/gui/proxy.hxx |
||||
SUBDIRS = proxyface |
||||
|
||||
MAINTAINERCLEANFILES = configure makefile.in ltmain.sh missing \ |
||||
aclocal.m4 install-sh |
||||
maintainer-clean-local: |
||||
- find . -name '*~' | xargs rm |
||||
- rm -r autom4te.cache |
||||
- rm aclocal.m4 config.guess config.sub configure \ |
||||
depcomp install-sh ltmain.sh makefile makefile.in \ |
||||
missing mkinstalldirs |
||||
|
@ -0,0 +1,34 @@ |
||||
UISOURCES = proxy.ui |
||||
MOCHEADER = proxy.hxx autoproxy.hxx |
||||
|
||||
UIHEADER = ui_proxy.hxx |
||||
MOCSOURCES = moc_proxy.cxx moc_autoproxy.cxx |
||||
|
||||
BUILT_SOURCES = ${UIHEADER} ${MOCSOURCES} |
||||
|
||||
proxyfacedir = ${includedir}/proxyface |
||||
proxyface_HEADERS = autoproxy.hxx unix.hxx windoze.hxx \ |
||||
${MOCHEADER} ${UIHEADER} |
||||
|
||||
lib_LTLIBRARIES = libproxyface.la |
||||
|
||||
libproxyface_la_SOURCES = ${MOCSOURCES} |
||||
libproxyface_la_LIBADD = ${PROXYLIB} |
||||
libproxyface_la_LDFLAGS = -version-info ${LIB_VERSION} |
||||
|
||||
AM_CPPFLAGS = -I${top_srcdir} -I${top_builddir} |
||||
|
||||
moc_%.cxx: %.hxx |
||||
${MOC} ${CPPFLAGS} ${AM_CPPFLAGS} -o $@ $< |
||||
|
||||
ui_%.hxx: %.ui |
||||
${UIC} -o $@ $< |
||||
|
||||
CLEANFILES = ${UIHEADER} ${MOCSOURCES} |
||||
|
||||
maintainer-clean-local: |
||||
- find . -name '*~' | xargs rm |
||||
- rm -r autom4te.cache |
||||
- rm aclocal.m4 config.guess config.sub configure \ |
||||
depcomp install-sh ltmain.sh makefile makefile.in \ |
||||
missing mkinstalldirs |
@ -0,0 +1,18 @@ |
||||
./bootstrap.sh && \ |
||||
LDFLAGS="-L/usr/lib32 -m32" CXXFLAGS="-m32" ./configure \ |
||||
--libdir=/usr/local/lib32 \ |
||||
--build=x86_64 \ |
||||
--host=i386 && \ |
||||
sudo make uninstall && \ |
||||
make clean && \ |
||||
LDFLAGS="-L/opt/local/i586-mingw32msvc/lib" \ |
||||
CPPFLAGS="-I/opt/local/i586-mingw32msvc/include" \ |
||||
./configure \ |
||||
--prefix=/opt/local/i586-mingw32msvc \ |
||||
--build=x86_64 \ |
||||
--host=i586-mingw32msvc && \ |
||||
sudo make uninstall && \ |
||||
make clean && \ |
||||
./configure && \ |
||||
sudo make uninstall |
||||
|
Loading…
Reference in new issue