aboutsummaryrefslogtreecommitdiff
path: root/tests/cxx/parser/error-handling
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2009-09-22 16:37:01 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2009-09-22 16:37:01 +0200
commitadd0575628733ae1f1f373170be48bc31f6cce98 (patch)
treeaa878149085aa61e5df8cef61f19809e8774fc59 /tests/cxx/parser/error-handling
parentf766a091129d76a71dc66421425eb04cf5178661 (diff)
Get rid of unnecessary .PHONY declarations
Diffstat (limited to 'tests/cxx/parser/error-handling')
-rw-r--r--tests/cxx/parser/error-handling/codes/makefile5
-rw-r--r--tests/cxx/parser/error-handling/exceptions/makefile5
-rw-r--r--tests/cxx/parser/error-handling/makefile2
3 files changed, 0 insertions, 12 deletions
diff --git a/tests/cxx/parser/error-handling/codes/makefile b/tests/cxx/parser/error-handling/codes/makefile
index 56f6ffc..8f130b1 100644
--- a/tests/cxx/parser/error-handling/codes/makefile
+++ b/tests/cxx/parser/error-handling/codes/makefile
@@ -37,22 +37,17 @@ $(call include-dep,$(dep))
# Convenience alias for default target.
#
-.PHONY: $(out_base)/
$(out_base)/: $(driver)
# Test.
#
-.PHONY: $(test)
-
$(test): driver := $(driver)
$(test): $(driver) $(src_base)/test.xml $(src_base)/output
$(call message,test $$1,$$1 $(src_base)/test.xml | diff -u $(src_base)/output -,$(driver))
# Clean.
#
-.PHONY: $(clean)
-
$(clean): $(driver).o.clean \
$(addsuffix .cxx.clean,$(obj)) \
$(addsuffix .cxx.clean,$(dep)) \
diff --git a/tests/cxx/parser/error-handling/exceptions/makefile b/tests/cxx/parser/error-handling/exceptions/makefile
index f587f62..7503803 100644
--- a/tests/cxx/parser/error-handling/exceptions/makefile
+++ b/tests/cxx/parser/error-handling/exceptions/makefile
@@ -38,22 +38,17 @@ $(call include-dep,$(dep))
# Convenience alias for default target.
#
-.PHONY: $(out_base)/
$(out_base)/: $(driver)
# Test.
#
-.PHONY: $(test)
-
$(test): driver := $(driver)
$(test): $(driver) $(src_base)/test.xml $(src_base)/output
$(call message,test $$1,$$1 $(src_base)/test.xml | diff -u $(src_base)/output -,$(driver))
# Clean.
#
-.PHONY: $(clean)
-
$(clean): $(driver).o.clean \
$(addsuffix .cxx.clean,$(obj)) \
$(addsuffix .cxx.clean,$(dep)) \
diff --git a/tests/cxx/parser/error-handling/makefile b/tests/cxx/parser/error-handling/makefile
index e183785..a9eaa6f 100644
--- a/tests/cxx/parser/error-handling/makefile
+++ b/tests/cxx/parser/error-handling/makefile
@@ -15,8 +15,6 @@ default := $(out_base)/
test := $(out_base)/.test
clean := $(out_base)/.clean
-.PHONY: $(default) $(test) $(clean)
-
$(default): $(addprefix $(out_base)/,$(addsuffix /,$(tests)))
$(test): $(addprefix $(out_base)/,$(addsuffix /.test,$(tests)))
$(clean): $(addprefix $(out_base)/,$(addsuffix /.clean,$(tests)))