diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-06-15 13:31:20 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-06-15 13:31:20 -0400 |
commit | 1aa682895e9ffafdfb00154a674d376b4c431945 (patch) | |
tree | 9049e7c077f9732bb781a5d50105e3dd79926350 /examples | |
parent | 98f41f9a450d7d0e441e266a8172a53200e4a8e6 (diff) | |
download | debhelper-1aa682895e9ffafdfb00154a674d376b4c431945.tar.gz |
Add stamp files to example rules targets. Closes: #486327
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/rules.simple | 8 |
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 |