diff options
| author | Nick Wellnhofer <wellnhofer@aevum.de> | 2015-01-24 17:00:14 +0100 | 
|---|---|---|
| committer | Nick Wellnhofer <wellnhofer@aevum.de> | 2015-01-24 17:00:14 +0100 | 
| commit | a6018fad143774e5976b86b78e83afe055bd9879 (patch) | |
| tree | 6d48887499c43c7821e727efa81b5a3410abd38e /Makefile | |
| parent | 0373cb433cdc80b55a43f097d2fd16b08056f638 (diff) | |
Prohibit overriding of some Makefile vars
SRCDIR, DATADIR, and PROG should not be overridable.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 | 
1 files changed, 3 insertions, 3 deletions
| @@ -1,5 +1,5 @@ -SRCDIR?=src -DATADIR?=data +SRCDIR=src +DATADIR=data  BUILDDIR?=build  GENERATOR?=Unix Makefiles  MINGW_BUILDDIR?=build-mingw @@ -13,7 +13,7 @@ BENCHDIR=bench  BENCHFILE=$(BENCHDIR)/benchinput.md  ALLTESTS=alltests.md  NUMRUNS?=10 -PROG?=$(BUILDDIR)/src/cmark +PROG=$(BUILDDIR)/src/cmark  BENCHINP?=README.md  JSMODULES=$(wildcard js/lib/*.js)  VERSION?=$(SPECVERSION) | 
