summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Merry <dev@randomguy3.me.uk>2010-12-13 16:46:09 +0000
committerAlex Merry <dev@randomguy3.me.uk>2010-12-13 16:46:09 +0000
commit912288a60db86a776dd5b5a5ad4fb04607ab500f (patch)
treea991ae5677804dd9b35c1d89f24d790d50227cce
parentda0b43d98c505dbe1a73bfe88fa42294e535288c (diff)
Don't use ?= in the Makefile: not necessary
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 8138c30..28c0687 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,8 @@
all:
-INSTALL ?= install
-PYTHON ?= python
-EGREP ?= egrep
+INSTALL = install
+PYTHON = python
+EGREP = egrep
XMLS = $(wildcard spec/*.xml)
TEMPLATES = $(wildcard doc/templates/*)