summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNick Wellnhofer <wellnhofer@aevum.de>2015-01-24 17:00:14 +0100
committerNick Wellnhofer <wellnhofer@aevum.de>2015-01-24 17:00:14 +0100
commita6018fad143774e5976b86b78e83afe055bd9879 (patch)
tree6d48887499c43c7821e727efa81b5a3410abd38e /Makefile
parent0373cb433cdc80b55a43f097d2fd16b08056f638 (diff)
Prohibit overriding of some Makefile vars
SRCDIR, DATADIR, and PROG should not be overridable.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 758d61e..59d55a9 100644
--- a/Makefile
+++ b/Makefile
@@ -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)