summaryrefslogtreecommitdiff
path: root/examples/cxx/parser
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 /examples/cxx/parser
parent3c853bc264719437bcb2807d75ff5e9f9a3ea4f8 (diff)
Get rid of unnecessary .PHONY declarations
Diffstat (limited to 'examples/cxx/parser')
-rw-r--r--examples/cxx/parser/generated/makefile3
-rw-r--r--examples/cxx/parser/hello/makefile3
-rw-r--r--examples/cxx/parser/library/makefile3
-rw-r--r--examples/cxx/parser/mixed/makefile3
-rw-r--r--examples/cxx/parser/mixin/makefile3
-rw-r--r--examples/cxx/parser/multiroot/makefile3
-rw-r--r--examples/cxx/parser/performance/makefile3
-rw-r--r--examples/cxx/parser/polymorphism/makefile3
-rw-r--r--examples/cxx/parser/polyroot/makefile3
-rw-r--r--examples/cxx/parser/wildcard/makefile3
10 files changed, 0 insertions, 30 deletions
diff --git a/examples/cxx/parser/generated/makefile b/examples/cxx/parser/generated/makefile
index 2c8d571..c1dcd7f 100644
--- a/examples/cxx/parser/generated/makefile
+++ b/examples/cxx/parser/generated/makefile
@@ -48,7 +48,6 @@ $(call include-dep,$(dep))
# Convenience alias for default target.
#
-.PHONY: $(out_base)/
$(out_base)/: $(driver)
# Dist.
@@ -71,8 +70,6 @@ $(dist-win): $(dist-common)
# Clean.
#
-.PHONY: $(clean)
-
$(clean): $(driver).o.clean \
$(addsuffix .cxx.clean,$(obj)) \
$(addsuffix .cxx.clean,$(dep)) \
diff --git a/examples/cxx/parser/hello/makefile b/examples/cxx/parser/hello/makefile
index 2ead3fa..a854098 100644
--- a/examples/cxx/parser/hello/makefile
+++ b/examples/cxx/parser/hello/makefile
@@ -41,7 +41,6 @@ $(call include-dep,$(dep))
# Convenience alias for default target.
#
-.PHONY: $(out_base)/
$(out_base)/: $(driver)
# Dist.
@@ -64,8 +63,6 @@ $(dist-win): $(dist-common)
# Clean.
#
-.PHONY: $(clean)
-
$(clean): $(driver).o.clean \
$(addsuffix .cxx.clean,$(obj)) \
$(addsuffix .cxx.clean,$(dep)) \
diff --git a/examples/cxx/parser/library/makefile b/examples/cxx/parser/library/makefile
index bc4ab73..1b66cdd 100644
--- a/examples/cxx/parser/library/makefile
+++ b/examples/cxx/parser/library/makefile
@@ -42,7 +42,6 @@ $(call include-dep,$(dep))
# Convenience alias for default target.
#
-.PHONY: $(out_base)/
$(out_base)/: $(driver)
# Dist.
@@ -69,8 +68,6 @@ $(dist-win): $(dist-common)
# Clean.
#
-.PHONY: $(clean)
-
$(clean): $(driver).o.clean \
$(addsuffix .cxx.clean,$(obj)) \
$(addsuffix .cxx.clean,$(dep)) \
diff --git a/examples/cxx/parser/mixed/makefile b/examples/cxx/parser/mixed/makefile
index 4d1fb0c..6f41519 100644
--- a/examples/cxx/parser/mixed/makefile
+++ b/examples/cxx/parser/mixed/makefile
@@ -42,7 +42,6 @@ $(call include-dep,$(dep))
# Convenience alias for default target.
#
-.PHONY: $(out_base)/
$(out_base)/: $(driver)
# Dist.
@@ -68,8 +67,6 @@ $(dist-win): $(dist-common)
# Clean.
#
-.PHONY: $(clean)
-
$(clean): $(driver).o.clean \
$(addsuffix .cxx.clean,$(obj)) \
$(addsuffix .cxx.clean,$(dep)) \
diff --git a/examples/cxx/parser/mixin/makefile b/examples/cxx/parser/mixin/makefile
index bb3927c..9ea9900 100644
--- a/examples/cxx/parser/mixin/makefile
+++ b/examples/cxx/parser/mixin/makefile
@@ -42,7 +42,6 @@ $(call include-dep,$(dep))
# Convenience alias for default target.
#
-.PHONY: $(out_base)/
$(out_base)/: $(driver)
# Dist.
@@ -68,8 +67,6 @@ $(dist-win): $(dist-common)
# Clean.
#
-.PHONY: $(clean)
-
$(clean): $(driver).o.clean \
$(addsuffix .cxx.clean,$(obj)) \
$(addsuffix .cxx.clean,$(dep)) \
diff --git a/examples/cxx/parser/multiroot/makefile b/examples/cxx/parser/multiroot/makefile
index 02b9f57..869bd2f 100644
--- a/examples/cxx/parser/multiroot/makefile
+++ b/examples/cxx/parser/multiroot/makefile
@@ -42,7 +42,6 @@ $(call include-dep,$(dep))
# Convenience alias for default target.
#
-.PHONY: $(out_base)/
$(out_base)/: $(driver)
# Dist.
@@ -71,8 +70,6 @@ $(dist-win): $(dist-common)
# Clean.
#
-.PHONY: $(clean)
-
$(clean): $(driver).o.clean \
$(addsuffix .cxx.clean,$(obj)) \
$(addsuffix .cxx.clean,$(dep)) \
diff --git a/examples/cxx/parser/performance/makefile b/examples/cxx/parser/performance/makefile
index 15938c9..a63bf36 100644
--- a/examples/cxx/parser/performance/makefile
+++ b/examples/cxx/parser/performance/makefile
@@ -42,7 +42,6 @@ $(call include-dep,$(dep))
# Convenience alias for default target.
#
-.PHONY: $(out_base)/
$(out_base)/: $(driver)
# Dist.
@@ -71,8 +70,6 @@ $(dist-win): $(dist-common)
# Clean.
#
-.PHONY: $(clean)
-
$(clean): $(driver).o.clean \
$(addsuffix .cxx.clean,$(obj)) \
$(addsuffix .cxx.clean,$(dep)) \
diff --git a/examples/cxx/parser/polymorphism/makefile b/examples/cxx/parser/polymorphism/makefile
index 954518b..8856710 100644
--- a/examples/cxx/parser/polymorphism/makefile
+++ b/examples/cxx/parser/polymorphism/makefile
@@ -42,7 +42,6 @@ $(call include-dep,$(dep))
# Convenience alias for default target.
#
-.PHONY: $(out_base)/
$(out_base)/: $(driver)
# Dist.
@@ -67,8 +66,6 @@ $(dist-win): $(dist-common)
# Clean.
#
-.PHONY: $(clean)
-
$(clean): $(driver).o.clean \
$(addsuffix .cxx.clean,$(obj)) \
$(addsuffix .cxx.clean,$(dep)) \
diff --git a/examples/cxx/parser/polyroot/makefile b/examples/cxx/parser/polyroot/makefile
index 007e1b9..a1ce052 100644
--- a/examples/cxx/parser/polyroot/makefile
+++ b/examples/cxx/parser/polyroot/makefile
@@ -42,7 +42,6 @@ $(call include-dep,$(dep))
# Convenience alias for default target.
#
-.PHONY: $(out_base)/
$(out_base)/: $(driver)
# Dist.
@@ -70,8 +69,6 @@ $(dist-win): $(dist-common)
# Clean.
#
-.PHONY: $(clean)
-
$(clean): $(driver).o.clean \
$(addsuffix .cxx.clean,$(obj)) \
$(addsuffix .cxx.clean,$(dep)) \
diff --git a/examples/cxx/parser/wildcard/makefile b/examples/cxx/parser/wildcard/makefile
index 8587bfc..03d9671 100644
--- a/examples/cxx/parser/wildcard/makefile
+++ b/examples/cxx/parser/wildcard/makefile
@@ -41,7 +41,6 @@ $(call include-dep,$(dep))
# Convenience alias for default target.
#
-.PHONY: $(out_base)/
$(out_base)/: $(driver)
# Dist.
@@ -65,8 +64,6 @@ $(dist-win): $(dist-common)
# Clean.
#
-.PHONY: $(clean)
-
$(clean): $(driver).o.clean \
$(addsuffix .cxx.clean,$(obj)) \
$(addsuffix .cxx.clean,$(dep)) \