Ticket #597: distclean.diff

File distclean.diff, 2.8 KB (added by ssen@…, 21 years ago)

distclean.diff

  • Makefile.in

    diff -ur ../base.orig/Makefile.in ./Makefile.in
    old new  
    66
    77clean::
    88        rm -f config.log config.status
     9
     10distclean:: clean
     11        rm -f Makefile Mk/dports.autoconf.mk
  • Mk/dports.subdir.mk

    diff -ur ../base.orig/Mk/dports.subdir.mk ./Mk/dports.subdir.mk
    old new  
    11.PHONY : all
    2 .PHONY : clean
     2.PHONY : clean distclean
    33.PHONY : install
    44
    55all::
     
    88                ( cd $$subdir && $(MAKE) DIRPRFX=${DIRPRFX}$$subdir/ $@) || exit 1; \
    99        done
    1010
    11 clean::
     11clean distclean::
    1212        @for subdir in $(SUBDIR); do\
    1313                echo ===\> making $@ in ${DIRPRFX}$$subdir; \
    1414                ( cd $$subdir && $(MAKE) DIRPRFX=${DIRPRFX}$$subdir/ $@) || exit 1; \
  • Mk/dports.tea.mk

    diff -ur ../base.orig/Mk/dports.tea.mk ./Mk/dports.tea.mk
    old new  
    99clean::
    1010        rm -f ${OBJS} ${SHLIB_NAME}
    1111
     12distclean:: clean
     13
    1214install:: all
    1315        mkdir -p ${INSTALLDIR}
    1416        install -c -o "${DSTUSR}" -g "${DSTGRP}" -m 444 ${SHLIB_NAME} ${INSTALLDIR}
  • doc/Makefile

    diff -ur ../base.orig/doc/Makefile ./doc/Makefile
    old new  
    1212clean:
    1313        rm -f prefix.mtree
    1414
     15distclean: clean
     16
    1517install:
    1618        mkdir -p ${DESTDIR}${ETCDIR}
    1719        mkdir -p ${INSTALLDIR}
  • src/darwinports1.0/Makefile

    diff -ur ../base.orig/src/darwinports1.0/Makefile ./src/darwinports1.0/Makefile
    old new  
    88
    99clean:
    1010
     11distclean: clean
     12
    1113install:
    1214        @mkdir -p ${INSTALLDIR}
    1315        @set -x; for file in ${SRCS}; do \
  • src/port/Makefile

    Only in ./src/darwinports1.0: Makefile~
    old new  
    1212
    1313clean:
    1414
     15distclean: clean
     16
    1517install: mkdirs
    1618        install -c -o ${DSTUSR} -g ${DSTGRP} -m 444 port.1 ${INSTALLDIR}/man/man1
    1719        install -c -o ${DSTUSR} -g ${DSTGRP} -m 555 port.tcl ${INSTALLDIR}/bin/port
  • src/port1.0/Makefile

    diff -ur ../base.orig/src/port1.0/Makefile ./src/port1.0/Makefile
    old new  
    1010
    1111clean::
    1212
     13distclean:: clean
     14
    1315install::
    1416        mkdir -p ${INSTALLDIR}
    1517        @set -x; for file in ${SRCS}; do \
  • src/port1.0/resources/package/Makefile

    diff -ur ../base.orig/src/port1.0/resources/package/Makefile ./src/port1.0/resources/package/Makefile
    old new  
    88
    99clean:
    1010
     11distclean: clean
     12
    1113install:
    1214        mkdir -p ${INSTALLDIR}
    1315        @set -x; for file in ${RSRCS}; do \