Implements a Proxy detection (WPAD) interface for Linux, Mac OSX and Windows. Offers a GUI for manual proxy settings and automatic WPAD detection. The GUI is based on QT.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.5 KiB
50 lines
1.5 KiB
UISOURCES = proxy.ui proxyauth.ui |
|
MOCHEADER = proxy.hxx autoproxy.hxx proxyauth.hxx |
|
LANGUAGES = proxy_de.qm proxy_en.qm proxy_fr.qm proxy_it.qm |
|
LANG_TS = proxy_de.ts proxy_en.ts proxy_fr.ts proxy_it.ts |
|
|
|
pkgconfigdir = $(libdir)/pkgconfig |
|
pkgconfig_DATA = libproxyface.pc |
|
pkgconfig2dir = $(datarootdir)/pkgconfig |
|
pkgconfig2_DATA = libproxyface.pc |
|
|
|
UIHEADER = ui_proxy.hxx ui_proxyauth.hxx |
|
MOCSOURCES = moc_proxy.cxx moc_autoproxy.cxx moc_proxyauth.cxx |
|
|
|
EXTRA_DIST = ${UISOURCES} $(pkgconfig_DATA).in version.cxx.in |
|
|
|
BUILT_SOURCES = ${UIHEADER} ${MOCSOURCES} ${LANGUAGES} version.cxx |
|
|
|
proxyfacedir = ${includedir}/proxyface |
|
proxyface_HEADERS = unix.hxx windoze.hxx qtproxy.hxx \ |
|
${MOCHEADER} ${UIHEADER} |
|
|
|
lib_LTLIBRARIES = libproxyface.la |
|
|
|
libproxyface_la_SOURCES = ${MOCSOURCES} ${LANGUAGES} version.cxx |
|
libproxyface_la_LIBADD = ${PROXYLIB} |
|
libproxyface_la_LDFLAGS = -version-info ${LIB_VERSION} |
|
|
|
AM_CPPFLAGS = -I${top_srcdir} -I${top_builddir} |
|
|
|
moc_%.cxx: %.hxx |
|
${MOC} -DMOC ${CPPFLAGS} ${AM_CPPFLAGS} -o $@ $< |
|
|
|
ui_%.hxx: %.ui |
|
${UIC} -o $@ $< |
|
|
|
%.ts: ${UISOURCES} ${MOCHEADER} ${proxyface_HEADERS} |
|
${LUPDATE} ${LUPDATE_ARGS} $^ -ts $@ |
|
|
|
%.qm: %.ts |
|
${LRELEASE} $< -qm $@ |
|
|
|
CLEANFILES = ${UIHEADER} ${MOCSOURCES} |
|
DISTCLEANFILES = $(pkgconfig_DATA) |
|
|
|
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
|
|
|