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.
48 lines
1.2 KiB
48 lines
1.2 KiB
13 years ago
|
## @file
|
||
|
##
|
||
|
## $Id: makefile.am 10 2009-06-17 12:15:51Z marwae $
|
||
|
##
|
||
|
## 1 2 3 4 5 6 7 8
|
||
|
## 45678901234567890123456789012345678901234567890123456789012345678901234567890
|
||
|
|
||
|
ALL_SRC = ${top_srcdir}/src/*.[ch]xx
|
||
|
# ${top_srcdir}/src/*.doc
|
||
|
|
||
|
DIRS = html
|
||
|
#latex
|
||
|
|
||
|
all: ${DIRS}
|
||
|
|
||
|
.PHONY: doc clean-local distclean-local dist-hool install-data-hook \
|
||
|
uninstall-hook
|
||
|
|
||
|
deps = ${top_srcdir}/COPYING ${top_srcdir}/README \
|
||
|
${top_srcdir}/INSTALL ${top_srcdir}/NEWS ${top_srcdir}/ChangeLog
|
||
|
|
||
|
html: ${ALL_SRC} doxyfile ${deps}
|
||
|
doxygen doxyfile
|
||
|
if PEDANTIC
|
||
|
test \! -s doxygen.errors
|
||
|
endif
|
||
|
# cd latex && make
|
||
|
# mv latex/refman.pdf @PACKAGENAME@-@MAJOR@.@MINOR@.@LEAST@.pdf
|
||
|
|
||
|
CLEANFILES = doxygen.errors @PACKAGENAME@-@MAJOR@.@MINOR@.@LEAST@.pdf
|
||
|
DISTCLEANFILES = @PACKAGENAME@.doxytag
|
||
|
MAINTAINERCLEANFILES = makefile.in
|
||
|
|
||
|
distclean-local:
|
||
|
- rm -r html latex
|
||
|
|
||
|
dist-hook: html
|
||
|
# cp -r html latex ${distdir}/
|
||
|
|
||
|
install-data-hook:
|
||
|
test -d $(DESTDIR)${docdir} || mkdir -p $(DESTDIR)${docdir}
|
||
|
chmod -R u+w $(DESTDIR)${docdir}
|
||
|
cp -r html $(DESTDIR)${docdir}/
|
||
|
|
||
|
uninstall-hook:
|
||
|
-chmod -R u+w $(DESTDIR)${docdir}
|
||
|
-rm -rf $(DESTDIR)${docdir}/*
|