*BSD News Article 48636


Return to BSD News archive

Path: euryale.cc.adfa.oz.au!newshost.anu.edu.au!harbinger.cc.monash.edu.au!simtel!vtc.tacom.army.mil!news1.oakland.edu!news.concourse.com!braintree!news.sprintlink.net!newsfeed.internetmci.com!usenet.eel.ufl.edu!col.hp.com!sony!nntp-sc.barrnet.net!netapp.com!netapp.com!not-for-mail
From: guy@netapp.com (Guy Harris)
Newsgroups: comp.sys.sun.admin,comp.unix.solaris,comp.unix.bsd.bsdi.misc
Subject: Re: You can tune a file system, but you can't tune a fish
Date: 14 Aug 1995 12:10:48 -0700
Organization: Network Appliance Corporation
Lines: 28
Distribution: inet
Message-ID: <40o73o$r6r@nova.netapp.com>
References: <405hjb$llr@news.jhu.edu> <40mvjn$kcc@jupiter.sdd.cegelecproj.co.uk> <40n581$m78@jupiter.sdd.cegelecproj.co.uk> <40nfkn$f43@centralnews1.Central.Sun.COM>
NNTP-Posting-Host: 192.9.200.13
Xref: euryale.cc.adfa.oz.au comp.sys.sun.admin:50957 comp.unix.solaris:43215 comp.unix.bsd.bsdi.misc:549

Steve McKinty - SunSoft ICNC Grenoble <smckinty@sunicnc.France.Sun.COM> wrote:
>Wasn't that a TECO-ism?

Well, yes, there *was* a TECOism wherein the command "MAKE LOVE" printed
the message "Not war?" (or, possibly, "NOT WAR?", as that was back in
the days when most terminals only supported upper-case) before creating
a file named "LOVE".

However, there's also a UNIXism; "make"s derived from the original Bell
Labs "make" will, if you do "make love" and there's no [Mm]akefile rule
for "love", say:

	nova% /usr/old/make love
	Make:  Don't know how to make love.  Stop.

("/usr/old/make", in SunOS 4.x, is basically an SVR2 "make", which is
derived from the original Bell Labs "make".  "/usr/bin/make" is Soren
Stjarna's rewrite, which doesn't have quite as amusing a message:

	nova% /usr/bin/make love
	make: Fatal error: Don't know how to make target `love'

GNU "make" isn't much better:

	nova% /usr/local/bin/make love
	make: *** No rule to make target `love'.  Stop.

.)