Changeset 340 in MondoRescue
- Timestamp:
- Jan 20, 2006, 1:11:02 AM (19 years ago)
- Location:
- trunk
- Files:
-
- 1 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/documentation/Makefile
r331 r340 1 # 2 # Makefile for mondorescue documentation build 3 # 4 # $Id$ 5 # 1 6 TARGET=mondorescue-howto 2 7 SRC=$(shell ls *.sgml) 3 8 DSL=$(TARGET).dsl 4 IMAGES=$(shell ls images/*.png | sed 's/\.png/.eps/g') 9 IMAGESDIR=images 10 IMAGES=$(shell ls ${IMAGESDIR}/*.png | sed 's/\.png/.eps/g') 5 11 6 12 all: $(TARGET).ps $(TARGET).pdf $(TARGET)/index.html $(TARGET).txt $(TARGET).html $(TARGET).rtf 7 13 8 images/%.eps: images/%.png14 ${IMAGESDIR}/%.eps: ${IMAGESDIR}/%.png 9 15 @echo "Converting $< to $@" 10 16 @convert $< $@ … … 52 58 @echo "" 53 59 @rm -fr $(TARGET).{aux,log,out,tex,dvi,pdf,ps,txt,rtf,html} $(TARGET) 60 61 install: all 62 @echo "" 63 @echo "Delivering mondorescue documentation" 64 @echo "" 65 @if [ "${INSTALLDIR}" != "" ]; then cp -a $(TARGET).{html,pdf,ps,txt,rtf} $(TARGET) ${INSTALLDIR} ; cp -a ${IMAGESDIR} ${INSTALLDIR}/$(TARGET) ; else echo "No INSTALLDIR specified aborting install"; fi -
trunk/mindi/VERSION
r266 r340 1 1.06 1 trunk -
trunk/mondo/VERSION
r266 r340 1 2.06 1 trunk -
trunk/mondo/configure.in
r250 r340 126 126 AC_CHECK_FUNCS([bzero getcwd memmove memset mkdir mkfifo setenv strcasecmp strchr strerror strrchr strstr getline asprintf trunc vasprintf]) 127 127 128 AC_OUTPUT([Makefile mondo/Makefile mondo/common/Makefile mondo/mondoarchive/Makefile mondo/mondorestore/Makefile mondo/docs/Makefile mondo/docs/en/Makefile mondo/ docs/en/1.6x-howto/Makefile mondo/restore-scripts/Makefile mondo/restore-scripts/mondo/Makefile mondo/restore-scripts/usr/Makefile mondo/restore-scripts/usr/bin/Makefile mondo/xmondo/Makefile mondo/post-nuke.sample/Makefile mondo/post-nuke.sample/usr/Makefile mondo/post-nuke.sample/usr/bin/Makefile])128 AC_OUTPUT([Makefile mondo/Makefile mondo/common/Makefile mondo/mondoarchive/Makefile mondo/mondorestore/Makefile mondo/docs/Makefile mondo/docs/en/Makefile mondo/restore-scripts/Makefile mondo/restore-scripts/mondo/Makefile mondo/restore-scripts/usr/Makefile mondo/restore-scripts/usr/bin/Makefile mondo/xmondo/Makefile mondo/post-nuke.sample/Makefile mondo/post-nuke.sample/usr/Makefile mondo/post-nuke.sample/usr/bin/Makefile]) -
trunk/mondo/distributions/common/mondo.spec
r318 r340 131 131 %files 132 132 %defattr(644,root,root,755) 133 %doc ChangeLog svn.log mondo/docs/en/ 1.6x-howto/*133 %doc ChangeLog svn.log mondo/docs/en/* 134 134 %doc INSTALL COPYING README TODO AUTHORS NEWS 135 135 -
trunk/mondo/mondo/docs/en/Makefile.am
r30 r340 1 SUBDIRS = 1.6x-howto1 SUBDIRS = mondorescue-howto -
trunk/tools/mkcommon
r320 r340 21 21 echo "Management of mindi-kernel ${MINDI_VER}-$REVISION" 22 22 rm -fr mindi-kernel-${MINDI_VER} 23 cp -a ${VER}/mindi-kernel mindi-kernel-${MINDI_VER} 24 find mindi-kernel-${MINDI_VER} -type d -name .svn | xargs rm -rf 25 find mindi-kernel-${MINDI_VER} -type f -name '.*.swp' | xargs rm -rf 26 find mindi-kernel-${MINDI_VER} -type f -name '*~' | xargs rm -rf 23 svn export ${VER}/mindi-kernel mindi-kernel-${MINDI_VER} 24 #cp -a ${VER}/mindi-kernel mindi-kernel-${MINDI_VER} 25 #find mindi-kernel-${MINDI_VER} -type d -name .svn | xargs rm -rf 26 #find mindi-kernel-${MINDI_VER} -type f -name '.*.swp' | xargs rm -rf 27 #find mindi-kernel-${MINDI_VER} -type f -name '*~' | xargs rm -rf 27 28 mkdir -p ${TOPDIR}/SOURCES 28 29 … … 35 36 echo "Management of mindi ${MINDI_VER}-$REVISION" 36 37 rm -fr mindi-${MINDI_VER} 37 cp -a ${VER}/mindi mindi-${MINDI_VER} 38 svn export ${VER}/mindi mindi-${MINDI_VER} 39 #cp -a ${VER}/mindi mindi-${MINDI_VER} 38 40 cp -a /tmp/mondorescue-svn.log mindi-${MINDI_VER}/svn.log 39 find mindi-${MINDI_VER} -type d -name .svn | xargs rm -rf 40 find mindi-${MINDI_VER} -type f -name '.*.swp' | xargs rm -rf 41 find mindi-${MINDI_VER} -type f -name '*~' | xargs rm -rf 42 rm -f mindi-${MINDI_VER}/parted2fdisk mindi-${MINDI_VER}/parted2fdisk.c mindi-${MINDI_VER}/rootfs/sbin/parted2fdisk-ia64 41 echo "$REVISION" > mindi-${MINDI_VER}/REVISION 42 #find mindi-${MINDI_VER} -type d -name .svn | xargs rm -rf 43 #find mindi-${MINDI_VER} -type f -name '.*.swp' | xargs rm -rf 44 #find mindi-${MINDI_VER} -type f -name '*~' | xargs rm -rf 45 rm -f mindi-${MINDI_VER}/rootfs/sbin/parted2fdisk-ia64 46 #rm -f mindi-${MINDI_VER}/parted2fdisk mindi-${MINDI_VER}/parted2fdisk.c mindi-${MINDI_VER}/rootfs/sbin/parted2fdisk-ia64 43 47 44 48 echo "Creating mindi tar files" … … 51 55 echo "Management of mondo ${MONDO_VER}-$REVISION" 52 56 rm -rf mondo-${MONDO_VER} 53 cp -a ${VER}/mondo mondo-${MONDO_VER} 57 svn export ${VER}/mondo mondo-${MONDO_VER} 58 #cp -a ${VER}/mondo mondo-${MONDO_VER} 54 59 cp -a /tmp/mondorescue-svn.log mondo-${MONDO_VER}/svn.log 55 cd mondo-${MONDO_VER} 60 echo "$REVISION" > mondo-${MONDO_VER}/REVISION 61 rm -rf documentation-${MONDO_VER} 62 svn export ${VER}/documentation documentation-${MONDO_VER} 63 cd documentation-${MONDO_VER} 64 make install INSTALLDIR=../mondo-${MONDO_VER}/mondo/docs/en 65 cd ../mondo-${MONDO_VER} 56 66 echo "Bootstraping mondo ... " 57 67 ./bootstrap 58 find . -type d -name .svn | xargs rm -rf59 find . -type f -name '.*.swp' | xargs rm -rf60 find . -type f -name '*~' | xargs rm -rf68 #find . -type d -name .svn | xargs rm -rf 69 #find . -type f -name '.*.swp' | xargs rm -rf 70 #find . -type f -name '*~' | xargs rm -rf 61 71 cd .. 62 72
Note:
See TracChangeset
for help on using the changeset viewer.