diff options
author | 1997-07-07 08:42:39 +0000 | |
---|---|---|
committer | 1997-07-07 08:42:39 +0000 | |
commit | 0e640c4a354b83382e290d47d1c7be61a65c1f1b (patch) | |
tree | cf5777ce9b1aa4d606284d459aec0b8eb1d2b39f | |
parent | remove NKMEMCLUSTER, HZ, add commented out HW_FLOW_CONTROL option (diff) | |
download | wireguard-openbsd-0e640c4a354b83382e290d47d1c7be61a65c1f1b.tar.xz wireguard-openbsd-0e640c4a354b83382e290d47d1c7be61a65c1f1b.zip |
fix make clean/make depend confusion with a cleandir: rule
-rw-r--r-- | lib/libss/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/libss/Makefile b/lib/libss/Makefile index 5eacd41674d..caf123a3cfe 100644 --- a/lib/libss/Makefile +++ b/lib/libss/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.6 1997/04/27 20:56:16 millert Exp $ +# $OpenBSD: Makefile,v 1.7 1997/07/07 08:42:39 grr Exp $ LIB= ss HDRS= ss.h ${.OBJDIR}/ss_err.h @@ -7,7 +7,7 @@ SRCS= ss_err.c data.c error.c execute_cmd.c help.c invocation.c list_rqs.c \ std_rqs.c CFLAGS+=-I. -I${.CURDIR}/.. -I${.CURDIR} -I${.CURDIR}/../com_err LDADD+= ${COM_ERR} -CLEANFILES+= ss_err.c ss_err.h std_rqs.c ss +CLEANFILES+= ss_err.c ss_err.h std_rqs.c ss_err.h ss_err.c: ${.CURDIR}/ss_err.et test -e ss_err.et || ln -s ${.CURDIR}/ss_err.et . @@ -33,4 +33,7 @@ includes: ss_err.h beforedepend: test -h ss || ln -s . ss +cleandir: _SUBDIRUSE clean + rm -f ss + .include <bsd.lib.mk> |