[Autosec-devel] sonar/doc Makefile.am,1.5,1.6 Makefile.in,1.16,1.17
Brought to you by:
red0x
From: red0x <re...@us...> - 2004-04-08 22:51:54
|
Update of /cvsroot/autosec/sonar/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30382/doc Modified Files: Makefile.am Makefile.in Log Message: Modified makefiles to autogenerate the plugin_manual when you make docs Index: Makefile.in =================================================================== RCS file: /cvsroot/autosec/sonar/doc/Makefile.in,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** Makefile.in 6 Dec 2003 00:13:25 -0000 1.16 --- Makefile.in 8 Apr 2004 22:38:41 -0000 1.17 *************** *** 96,99 **** --- 96,100 ---- man1_MANS = sonar.1 DOCSUBDIRS = html + EXTRA_DIST = sonar_plugin_man.tex subdir = doc mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs *************** *** 269,273 **** uninstall-info-am uninstall-local uninstall-man uninstall-man1 ! debug: all --- 270,274 ---- uninstall-info-am uninstall-local uninstall-man uninstall-man1 ! sonar_plugin_man.pdf: sonar_plugin_man.tex debug: all *************** *** 278,281 **** --- 279,283 ---- -rm -rf html latex -rm docConf Makefile sonar.1 + -rm sonar_plugin_man.pdf sonar_plugin_man.log sonar_plugin_man.aux sonar_plugin_man.toc clean-generic: *************** *** 310,314 **** $(DOXYGEN) docConf ! all-am: html # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 312,319 ---- $(DOXYGEN) docConf ! sonar_plugin_man.pdf: sonar_plugin_man.tex ! if [ -x `which pdflatex` ]; then `which pdflatex` $(top_srcdir)/doc/sonar_plugin_man.tex > /dev/null; fi ! ! all-am: html sonar_plugin_man.pdf # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. Index: Makefile.am =================================================================== RCS file: /cvsroot/autosec/sonar/doc/Makefile.am,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Makefile.am 6 Dec 2003 00:13:19 -0000 1.5 --- Makefile.am 8 Apr 2004 22:38:41 -0000 1.6 *************** *** 1,7 **** man1_MANS = sonar.1 DOCSUBDIRS = html ! debug: all ! install-debug: install --- 1,7 ---- man1_MANS = sonar.1 DOCSUBDIRS = html ! sonar_plugin_man.pdf: sonar_plugin_man.tex debug: all ! EXTRA_DIST = sonar_plugin_man.tex install-debug: install *************** *** 12,15 **** --- 12,16 ---- -rm -rf html latex -rm docConf Makefile sonar.1 + -rm sonar_plugin_man.pdf sonar_plugin_man.log sonar_plugin_man.aux sonar_plugin_man.toc clean-generic: *************** *** 44,46 **** $(DOXYGEN) docConf ! all-am: html --- 45,50 ---- $(DOXYGEN) docConf ! sonar_plugin_man.pdf: sonar_plugin_man.tex ! if [ -x `which pdflatex` ]; then `which pdflatex` $(top_srcdir)/doc/sonar_plugin_man.tex > /dev/null; fi ! ! all-am: html sonar_plugin_man.pdf |