- Timestamp:
- Dec 23, 2016, 6:40:23 PM (8 years ago)
- Location:
- branches/3.3/mondo-doc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.3/mondo-doc/Makefile.howto
r3140 r3640 57 57 @echo "Cleaning up the documentation directory for the Howto" 58 58 @echo "" 59 @ rm -fr $(TARGET).{aux,log,out,tex,dvi,pdf,ps,txt,rtf,html} $(TARGET)59 @bash -c "rm -fr $(TARGET).{aux,log,out,tex,dvi,pdf,ps,txt,rtf,html} $(TARGET)" 60 60 61 61 install: all … … 63 63 @echo "Delivering mondorescue howto" 64 64 @echo "" 65 @if [ "${INSTALLDIR}" != "" ]; then mkdir -p ${INSTALLDIR} ; cp -a $(TARGET).{html,pdf,ps,txt,rtf} $(TARGET) ${INSTALLDIR}; cp -a ${IMAGESDIR} ${INSTALLDIR}/$(TARGET) ; else echo "No INSTALLDIR specified aborting install"; fi65 @if [ "${INSTALLDIR}" != "" ]; then mkdir -p ${INSTALLDIR} ; bash -c "cp -a $(TARGET).{html,pdf,ps,txt,rtf} $(TARGET) ${INSTALLDIR}" ; cp -a ${IMAGESDIR} ${INSTALLDIR}/$(TARGET) ; else echo "No INSTALLDIR specified aborting install"; fi -
branches/3.3/mondo-doc/Makefile.man
r919 r3640 52 52 @echo "Cleaning up the documentation directory for man pages" 53 53 @echo "" 54 @ rm -f *.8.{dvi,pdf,ps,txt,html}54 @bash -c "rm -f *.8.{dvi,pdf,ps,txt,html}" 55 55 56 56 install: install-mindi install-mondo … … 60 60 @echo "Delivering mindi man page" 61 61 @echo "" 62 @if [ "${INSTALLDIR}" != "" ]; then mkdir -p ${INSTALLDIR} ; cp -a mindi.8.{html,pdf,ps,txt} mindi.8 ${INSTALLDIR}; else echo "No INSTALLDIR specified aborting install"; fi62 @if [ "${INSTALLDIR}" != "" ]; then mkdir -p ${INSTALLDIR} ; bash -c "cp -a mindi.8.{html,pdf,ps,txt} mindi.8 ${INSTALLDIR}" ; else echo "No INSTALLDIR specified aborting install"; fi 63 63 64 64 install-mondo: all … … 66 66 @echo "Delivering mondo man pages" 67 67 @echo "" 68 @if [ "${INSTALLDIR}" != "" ]; then mkdir -p ${INSTALLDIR} ; cp -a mondo*.8.{html,pdf,ps,txt} mondo*.8 ${INSTALLDIR}; else echo "No INSTALLDIR specified aborting install"; fi68 @if [ "${INSTALLDIR}" != "" ]; then mkdir -p ${INSTALLDIR} ; bash -c "cp -a mondo*.8.{html,pdf,ps,txt} mondo*.8 ${INSTALLDIR}" ; else echo "No INSTALLDIR specified aborting install"; fi
Note:
See TracChangeset
for help on using the changeset viewer.