mirror of
https://git.savannah.gnu.org/git/make.git
synced 2025-01-29 02:20:01 +00:00
* maintMakefile: Accept variable overrides from the environment.
This commit is contained in:
parent
b9a01a8b3b
commit
d7f25cfda5
1 changed files with 12 additions and 4 deletions
|
@ -6,10 +6,18 @@ BUGLIST := bug-make@gnu.org
|
||||||
|
|
||||||
# These are related to my personal setup.
|
# These are related to my personal setup.
|
||||||
GPG_FINGERPRINT := 6338B6D4
|
GPG_FINGERPRINT := 6338B6D4
|
||||||
SRCROOTDIR := $(HOME)/src
|
|
||||||
GNULIBDIR := $(SRCROOTDIR)/gnulib
|
# SRCROOTDIR is just a handy location to keep source files in
|
||||||
MAKEWEBDIR := $(SRCROOTDIR)/make/make-web
|
SRCROOTDIR ?= $(HOME)/src
|
||||||
GNUWEBDIR := $(SRCROOTDIR)/gnu-www
|
|
||||||
|
# Where the gnulib project has been locally cloned
|
||||||
|
GNULIBDIR ?= $(SRCROOTDIR)/gnulib
|
||||||
|
|
||||||
|
# Where to put the CVS checkout of the GNU web repository
|
||||||
|
GNUWEBDIR ?= $(SRCROOTDIR)/gnu-www
|
||||||
|
|
||||||
|
# Where to put the CVS checkout of the GNU make web repository
|
||||||
|
MAKEWEBDIR ?= $(SRCROOTDIR)/make/make-web
|
||||||
|
|
||||||
# We like mondo-warnings!
|
# We like mondo-warnings!
|
||||||
AM_CFLAGS += -Wall -Wextra -Wdeclaration-after-statement -Wshadow -Wpointer-arith -Wbad-function-cast
|
AM_CFLAGS += -Wall -Wextra -Wdeclaration-after-statement -Wshadow -Wpointer-arith -Wbad-function-cast
|
||||||
|
|
Loading…
Reference in a new issue