summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2010-11-02 15:12:48 +0000
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2010-11-09 16:47:05 +0000
commit87a2a70122fb06dc61e0c7fdb402a853ef881a35 (patch)
treeca9151a837c59596a19db97a42beee0a12bd917e /Makefile
parent5d320901101fd29a869468d94ad5971b3dfc351e (diff)
Remove generation of .name, .camel, .upper, .lower files
We haven't used these for a very long time.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 1 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index 5905873a..c51ffbe7 100644
--- a/Makefile
+++ b/Makefile
@@ -11,14 +11,6 @@ PYTHON = python
XMLS = $(wildcard spec/*.xml)
TEMPLATES = $(wildcard doc/templates/*)
INTERFACE_XMLS = $(filter spec/[[:upper:]]%.xml,$(XMLS))
-CANONICAL_NAMES = $(INTERFACE_XMLS:spec/%.xml=tmp/%.name)
-
-$(CANONICAL_NAMES): tmp/%.name: spec/%.xml tools/extract-nodename.py
- @install -d tmp
- python tools/extract-nodename.py $< > $@
- tr a-z A-Z < $@ > $@.upper
- tr A-Z a-z < $@ > $@.lower
- tr -d _ < $@ > $@.camel
TEST_XMLS = $(wildcard test/input/*.xml)
TEST_INTERFACE_XMLS = test/input/_Test.xml
@@ -38,7 +30,7 @@ GENERATED_FILES = \
doc/spec.html \
doc/spec/index.html \
FIXME.out \
- $(CANONICAL_NAMES)
+ $(NULL)
doc/spec.html: doc/templates/oldspec.html
cp $< $@