Date: Sun, 26 Nov 1995 03:08:57 -0500 (EST) From: "Marc G. Fournier" <scrappy@hub.org> To: current@freebsd.org Subject: Makefile change... Message-ID: <Pine.BSF.3.91.951126030428.1306A-100000@hub.org>
next in thread | raw e-mail | index | archive | help
Hi... Since I don't quite think of this as a send-pr problem report (yes, I've sent one in that way, sorry...), and I don't really know of any better place to send it, could someone who "has the power" sutff this into *-current's /usr/src/gnu/usr.bin? Its a modified Makefile that actually checks to see if part of the source tree is even installed before trying to make it. for instance, I don't have awk, since I don't want make world to install over the one I already have. Same as tar and cc. None of the Makefiles, except for /usr/src/Makefile, does any checking on this. Also...is there a better place to send this so that it doesn't go out to the list as a whole? Thanks... Marc G. Fournier | POP Mail Telnet Acct DNS Hosting scrappy@hub.org | WWW Services Database Services | Knowledge, soon to be: | | Information and scrappy@ki.net | WWW: http://hub.org | Communications, Inc -----[ /usr/src/gnu/usr.bin/Makefile ]---- # $Id: Makefile,v 1.27 1995/04/11 17:28:26 nate Exp $ SUBDIR= .if exists(as) SUBDIR+= as .endif .if exists(awk) SUBDIR+= awk .endif .if exists(bc) SUBDIR+= bc .endif .if exists(cc) SUBDIR+= cc .endif .if exists(cpio) SUBDIR+= cpio .endif .if exists(cvs) SUBDIR+= cvs .endif .if exists(dc) SUBDIR+= dc .endif .if exists(dialog) SUBDIR+= dialog .endif .if exists(diff) SUBDIR+= diff .endif .if exists(diff3) SUBDIR+= diff3 .endif .if exists(gdb) SUBDIR+= gdb .endif .if exists(grep) SUBDIR+= grep .endif .if exists(groff) SUBDIR+= groff .endif .if exists(gzip) SUBDIR+= gzip .endif .if exists(kgdb) SUBDIR+= kgdb .endif .if exists(ld) SUBDIR+= ld .endif .if exists(man) SUBDIR+= man .endif .if exists(mkisofs) SUBDIR+= mkisofs .endif .if exists(patch) SUBDIR+= patch .endif .if exists(perl) SUBDIR+= perl .endif .if exists(ptx) SUBDIR+= ptx .endif .if exists(rcs) SUBDIR+= rcs .endif .if exists(sdiff) SUBDIR+= sdiff .endif .if exists(send-pr) SUBDIR+= send-pr .endif .if exists(sort) SUBDIR+= sort .endif .if exists(tar) SUBDIR+= tar .endif .if exists(texinfo) SUBDIR+= texinfo .endif .if exists(yppush) SUBDIR+= yppush .endif .include <bsd.subdir.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSF.3.91.951126030428.1306A-100000>