Code

Make CFLAGS overridable from make command line.
authorPavel Roskin <proski@gnu.org>
Sat, 6 Aug 2005 05:36:15 +0000 (01:36 -0400)
committerJunio C Hamano <junkio@cox.net>
Fri, 12 Aug 2005 17:38:22 +0000 (10:38 -0700)
commitb05701c5b4c7983ef04d8c286c65089596553bd6
tree8ef311b46ed99bc45b95236a00f128f0a98171e0
parent5a571cdd8ab390e13fc02da6d6489d2ffa668aa4
Make CFLAGS overridable from make command line.

This patch renames COPTS to CFLAGS, because it's COPTS that was user
overridable.  Also, -Wall is moved there because it's optional.  What
was CFLAGS is now ALL_CFLAGS, which users should not override.

Defines are added to DEFINES.  Since ALL_CFLAGS is recursively expanded,
it uses the final value of DEFINES.

Implicit rules are made explicit since the implicit rules use CFLAGS
rather than ALL_CFLAGS.  I believe that serious projects should not rely
on implicit rules anyway.  Percent rules are used because they are used
already and because they don't need the .SUFFIXES target.

[jc: in addition to updating the patch for 0.99.4, I fixed up a
glitch in Pavel's original patch which compiled sha1.o out of
mozilla-sha1/sha1.c, where it should have left the resulting
object file in mozilla-sha1 directory for later "ar".]

Signed-off-by: Pavel Roskin <proski@gnu.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Makefile
tools/Makefile