Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 13 May 1997 16:21:59 +1000
From:      Bruce Evans <bde@zeta.org.au>
To:        asami@FreeBSD.ORG, cvs-all@FreeBSD.ORG, CVS-committers@FreeBSD.ORG, cvs-games@FreeBSD.ORG
Subject:   Re: cvs commit:  src/games/adventure Makefile
Message-ID:  <199705130621.QAA14766@godzilla.zeta.org.au>

next in thread | raw e-mail | index | archive | help
>  Modified:    games/adventure  Makefile
>  Log:
>  Add ${CFLAGS} and ${LDFLAGS} to the setup command line.

Please improve low quality makefiles instead of adding more cruft to them.
Removing the explicit rule gives better results (the implicit null suffix
rule ".c" gets used).

The dependencies for `setup' are still broken.  Tools like `setup' are
most easily handled by putting them in a separate directory, although
this causes different problems with dependencies.  There should be more
general support for tools.  See bin/sh for a more interesting example.
The dependencies for sh are complicated enough as it is (it's hard to make
them correct enough for -j3 to work) and putting the tools in separate
directories wouldn't help (see tn3270 for how badly this works).

Bruce



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199705130621.QAA14766>