diff options
author | Alexandre Anriot <aanriot@cvs.openbsd.org> | 2007-04-04 15:24:28 +0000 |
---|---|---|
committer | Alexandre Anriot <aanriot@cvs.openbsd.org> | 2007-04-04 15:24:28 +0000 |
commit | cd310311f583634f2be469b9bb090435500ac25c (patch) | |
tree | b72d7108c2638a1cd8662a92cb0a7b09a97e7994 | |
parent | 2a1e890dc8f6bbfdb17e2a03ed71b252ce4440e7 (diff) |
add a "distclean" target to please `make cleandir`.
ok matthieu@ todd@
-rw-r--r-- | distrib/notes/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/distrib/notes/Makefile b/distrib/notes/Makefile index b3f4d562d..61183f3cc 100644 --- a/distrib/notes/Makefile +++ b/distrib/notes/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.3 2007/03/28 20:05:15 todd Exp $ +# $OpenBSD: Makefile,v 1.4 2007/04/04 15:24:27 aanriot Exp $ FILE= README.${MACHINE} @@ -26,6 +26,8 @@ install: ${FILE}.generated clean: rm -f *.generated +distclean: clean + includes: @echo No includes here. |