Changeset 1517


Ignore:
Timestamp:
2000-09-07T16:32:41+12:00 (24 years ago)
Author:
jrm21
Message:

Edited various Makefile.in files so that "make distclean" works.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/Makefile.in

    r1493 r1517  
    6262    done
    6363
     64# added test to check existence of Makefile, as src/recpt is in
     65# both INSTALLDIRS and OTHERDIRS - can't make distclean twice!
    6466distclean:
    6567    rm -f Makefile config.cache config.h config.log stamp-h config.status
    6668    for subdir in $(INSTALLDIRS) $(OTHERDIRS); do \
    6769      echo cleaning $@ in $$subdir; \
    68       (cd $$subdir && $(MAKE) distclean) || exit 1; \
     70      (cd $$subdir && if test -e Makefile; then $(MAKE) distclean;fi) || exit 1; \
    6971    done
    7072
Note: See TracChangeset for help on using the changeset viewer.