diff options
author | joeyh <joeyh> | 2007-08-28 20:50:06 +0000 |
---|---|---|
committer | joeyh <joeyh> | 2007-08-28 20:50:06 +0000 |
commit | 1201d7c515843f1bd5d92540786aef4672e47cc1 (patch) | |
tree | ec4544193e99535f8e16a5ee82663d1e2a209ca3 /examples | |
parent | 91b8c0c1c3c6bed0407734c444161f89a2411f99 (diff) | |
download | debhelper-1201d7c515843f1bd5d92540786aef4672e47cc1.tar.gz |
r2021: * Don't use - in front of make clean in example rules files.
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/rules | 4 | ||||
-rwxr-xr-x | examples/rules.indep | 4 | ||||
-rwxr-xr-x | examples/rules.multi | 4 | ||||
-rwxr-xr-x | examples/rules.multi2 | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/examples/rules b/examples/rules index 97f644bd..9fe997b0 100755 --- a/examples/rules +++ b/examples/rules @@ -20,8 +20,8 @@ clean: rm -f build-stamp # Add here commands to clean up after the build process. - #-$(MAKE) clean - #-$(MAKE) distclean + #$(MAKE) clean + #$(MAKE) distclean dh_clean diff --git a/examples/rules.indep b/examples/rules.indep index ecae7280..428f4e9a 100755 --- a/examples/rules.indep +++ b/examples/rules.indep @@ -22,8 +22,8 @@ clean: rm -f build-stamp # Add here commands to clean up after the build process. - #-$(MAKE) clean - #-$(MAKE) distclean + #$(MAKE) clean + #$(MAKE) distclean dh_clean diff --git a/examples/rules.multi b/examples/rules.multi index d481f15f..3ca9719b 100755 --- a/examples/rules.multi +++ b/examples/rules.multi @@ -24,8 +24,8 @@ clean: rm -f build-stamp # Add here commands to clean up after the build process. - #-$(MAKE) clean - #-$(MAKE) distclean + #$(MAKE) clean + #$(MAKE) distclean dh_clean diff --git a/examples/rules.multi2 b/examples/rules.multi2 index b97a6594..4e84c531 100755 --- a/examples/rules.multi2 +++ b/examples/rules.multi2 @@ -26,8 +26,8 @@ clean: rm -f build-stamp # Add here commands to clean up after the build process. - #-$(MAKE) clean - #-$(MAKE) distclean + #$(MAKE) clean + #$(MAKE) distclean dh_clean |