From: <pst...@us...> - 2008-06-12 20:16:59
|
Revision: 599 http://jazzplusplus.svn.sourceforge.net/jazzplusplus/?rev=599&view=rev Author: pstieber Date: 2008-06-12 13:16:54 -0700 (Thu, 12 Jun 2008) Log Message: ----------- Added files and autotools commands to build and install the help files on a Linux box. Modified Paths: -------------- trunk/jazz/configure.ac trunk/jazz/src/Makefile.am Added Paths: ----------- trunk/jazz/src/HelpFiles/Makefile.am trunk/jazz/src/HelpFiles/images/Makefile.am Modified: trunk/jazz/configure.ac =================================================================== --- trunk/jazz/configure.ac 2008-06-12 20:15:36 UTC (rev 598) +++ trunk/jazz/configure.ac 2008-06-12 20:16:54 UTC (rev 599) @@ -231,5 +231,11 @@ LDFLAGS="$LDFLAGS $WX_LIBS" -AC_CONFIG_FILES([Makefile src/Makefile conf/Makefile]) +AC_CONFIG_FILES([\ +Makefile src/Makefile \ +src/HelpFiles/Makefile \ +src/HelpFiles/images/Makefile \ +conf/Makefile \ +]) + AC_OUTPUT Added: trunk/jazz/src/HelpFiles/Makefile.am =================================================================== --- trunk/jazz/src/HelpFiles/Makefile.am (rev 0) +++ trunk/jazz/src/HelpFiles/Makefile.am 2008-06-12 20:16:54 UTC (rev 599) @@ -0,0 +1,28 @@ +SUBDIRS = images + +SUFFIXES= .o .tex + +.tex.o: + export TEXINPUTS=.; tex2rtf $< $*.html -html -twice + touch $@ + +noinst_LIBRARIES = libphony.a + +libphony_a_SOURCES = jazz.tex + +helpdir = ${prefix}/bin/HelpFiles + +make-install-dirs: + -if test '!' -d $(helpdir); then mkdir -p $(helpdir); fi + +install-data-hook: make-install-dirs + -@ echo Installing $(helpdir) ; \ + $(INSTALL_DATA) $(srcdir)/*.gif $(helpdir) ; \ + $(INSTALL_DATA) $(srcdir)/*.png $(helpdir) ; \ + $(INSTALL_DATA) *.html $(helpdir) ; \ + $(INSTALL_DATA) *.hhc $(helpdir) ; \ + $(INSTALL_DATA) *.hhk $(helpdir) ; \ + $(INSTALL_DATA) *.hhp $(helpdir) ; \ + $(INSTALL_DATA) *.htx $(helpdir) ; \ + $(INSTALL_DATA) *.con $(helpdir) ; \ + $(INSTALL_DATA) *.ref $(helpdir) Property changes on: trunk/jazz/src/HelpFiles/Makefile.am ___________________________________________________________________ Name: svn:eol-style + native Added: trunk/jazz/src/HelpFiles/images/Makefile.am =================================================================== --- trunk/jazz/src/HelpFiles/images/Makefile.am (rev 0) +++ trunk/jazz/src/HelpFiles/images/Makefile.am 2008-06-12 20:16:54 UTC (rev 599) @@ -0,0 +1,8 @@ +helpimagesdir = ${prefix}/bin/HelpFiles/images + +make-install-dirs : + -if test '!' -d $(helpimagesdir); then mkdir -p $(helpimagesdir); fi + +install-data-hook : make-install-dirs + -@ echo Installing $(helpimagesdir) ; \ + $(INSTALL_DATA) $(srcdir)/*.png $(helpimagesdir) Property changes on: trunk/jazz/src/HelpFiles/images/Makefile.am ___________________________________________________________________ Name: svn:eol-style + native Modified: trunk/jazz/src/Makefile.am =================================================================== --- trunk/jazz/src/Makefile.am 2008-06-12 20:15:36 UTC (rev 598) +++ trunk/jazz/src/Makefile.am 2008-06-12 20:16:54 UTC (rev 599) @@ -1,5 +1,7 @@ ## Process this file with automake to produce Makefile.in +SUBDIRS = HelpFiles + bin_PROGRAMS = jazz if USE_ALSA This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |