summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-06-15 13:31:20 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-06-15 13:31:20 -0400
commit1aa682895e9ffafdfb00154a674d376b4c431945 (patch)
tree9049e7c077f9732bb781a5d50105e3dd79926350 /examples
parent98f41f9a450d7d0e441e266a8172a53200e4a8e6 (diff)
Add stamp files to example rules targets. Closes: #486327
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/rules.simple8
1 files changed, 6 insertions, 2 deletions
diff --git a/examples/rules.simple b/examples/rules.simple
index 21e1c081..ab49db98 100755
--- a/examples/rules.simple
+++ b/examples/rules.simple
@@ -1,13 +1,17 @@
#!/usr/bin/make -f
-build:
+build: build-stamp
+build-stamp:
dh build
+ touch build-stamp
clean:
dh clean
-install: build
+install: build install-stamp
+install-stamp:
dh install
+ touch install-stamp
binary-arch: install
dh binary-arch