diff options
author | Alex Merry <dev@randomguy3.me.uk> | 2010-12-13 16:46:09 +0000 |
---|---|---|
committer | Alex Merry <dev@randomguy3.me.uk> | 2010-12-13 16:46:09 +0000 |
commit | 912288a60db86a776dd5b5a5ad4fb04607ab500f (patch) | |
tree | a991ae5677804dd9b35c1d89f24d790d50227cce /Makefile | |
parent | da0b43d98c505dbe1a73bfe88fa42294e535288c (diff) |
Don't use ?= in the Makefile: not necessary
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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/*) |