summaryrefslogtreecommitdiff
path: root/tests/cxx/parser/makefile
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2009-09-22 15:40:15 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2009-09-22 15:40:15 +0200
commit6c620880eb15473a6414901f4764daf06dc4372c (patch)
tree7449ad31c3937c8909431d31f40a490034ba525b /tests/cxx/parser/makefile
parent3c853bc264719437bcb2807d75ff5e9f9a3ea4f8 (diff)
Get rid of unnecessary .PHONY declarations
Diffstat (limited to 'tests/cxx/parser/makefile')
-rw-r--r--tests/cxx/parser/makefile4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/cxx/parser/makefile b/tests/cxx/parser/makefile
index 955be44..dec968c 100644
--- a/tests/cxx/parser/makefile
+++ b/tests/cxx/parser/makefile
@@ -5,18 +5,14 @@
include $(dir $(lastword $(MAKEFILE_LIST)))../../../build/bootstrap.make
-
tests := built-in enumeration generated-impl list recursive \
name-clash/inheritance polymorphism test-template validation \
union
-
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)))