install.do (337B)
1 redo-ifchange all 2 . ./config.redo 3 install -d "$DOCDIR" "$BINDIR" "$DATADIR" 4 for docfile in $DOCS; do 5 install -Dm 0644 "${docfile}" "${DOCDIR}/${docfile}" 6 done 7 for datafile in $DATAFILES; do 8 install -m 0644 "${datafile}" "${DATADIR}/${datafile}" 9 done 10 for binfile in $PROGS; do 11 install -Dm 0755 "${binfile}" "${BINDIR}/${binfile}" 12 done