The Unix Heritage Society mailing list
 help / color / mirror / Atom feed
From: norman@oclsc.org (Norman Wilson)
Subject: [TUHS] Another "make-raking" discussion topic
Date: Sat, 23 Sep 2017 11:53:55 -0400	[thread overview]
Message-ID: <1506182039.27660.for-standards-violators@oclsc.org> (raw)

Lyndon Nerenberg:

  I really like mk.  8ed was where it first rolled out?  I remember
  reading about it in the 10ed books.  It's a joy to use in Plan 9.

======

Later than that.  I was around when Andrew wrote mk, so it
definitely post-dated the 8/e manual.

mk does a number of things better, but to my mind not quite
enough to justify carrying it around.  Just as I decided long
ago (once I'd come out of the ivory hothouse of Murray Hill)
that I was best off writing programs that hewed to the ISO C
and POSIX interfaces (and later put some work into bringing
my private copy of post-V10 nearer to the standards), because
that way I didn't have to think much about porting; so I
decided eventually that it is better just to use make.

As with any other language, of course, it's best to use it
in as simple a way as possible.  So I don't care much whether
it's gmake or pmake or qmake as long as it implements more
or less the 7/e core subset without breaking anything.

Larry McVoy:

  I do wish that some simple make had stuffed a scripting language in there.
  Anything, tcl, lua, even (horrors, can't believe I'm saying this) a little
  lisp.  Or ideally a built in shell compat language.  All those backslashes
  to make shell scripts work get old.

======

This is something mk got right, and it's actually very simple to do:
every recipe is a shell script.  Not a collection of lines handed
one by one to the shell, but a block of text.  No backslashes (or
extra semicolons) required for tests.  Each script is run with sh -e,
so by default one failed command will abort the rest, which is
usually what one wants; but if you don't want that you just insert
	set +e

(So it's not that I dislike mk.  Were it available as an easy
add-on package on all modern systems, rather than something I'd
have to carry around and compile, I'd be happy to use it.)

Norman Wilson
Toronto ON



             reply	other threads:[~2017-09-23 15:53 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-09-23 15:53 Norman Wilson [this message]
2017-09-23 18:09 ` Lyndon Nerenberg

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1506182039.27660.for-standards-violators@oclsc.org \
    --to=norman@oclsc.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).