Date: Wed, 18 Jul 2001 16:30:41 +0200 (CEST) From: carlo@vis.ethz.ch (Carlo Dapor) To: freebsd-java@freebsd.org Subject: j2sdk1.3.1/make/Makefile is missing the 'clean' target Message-ID: <20010718143041.1E854275B7@naboo.ethz.ch>
next in thread | raw e-mail | index | archive | help
Dear Java amigos ! The following patch adds a 'clean' target. Enjoy ! Ciao, derweil, -- Carlo PS: Here it goes *** j2sdk1.3.1/make/Makefile.orig Wed Jan 31 08:22:46 2001 --- j2sdk1.3.1/make/Makefile Wed Jul 18 09:35:32 2001 *************** *** 160,165 **** --- 160,170 ---- sanity: @$(SHELL) $(BUILDDIR)/tools/sanityck + clean: + for dir in $(SUBDIRS) ; \ + do \ + $(MAKE) -C $$dir $@ ; \ + done clobber:: sanity $(RM) -r $(CLASSDESTDIR) $(BINDIR) $(LIBDIR) $(GENSRCDIR) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20010718143041.1E854275B7>