diff options
author | Hans Insulander <hin@cvs.openbsd.org> | 2003-05-13 03:13:31 +0000 |
---|---|---|
committer | Hans Insulander <hin@cvs.openbsd.org> | 2003-05-13 03:13:31 +0000 |
commit | 371cd3ebede8749d196eb400e88ac4b26c4b723c (patch) | |
tree | 837d0af3804ddcb36f9de8fad5f49be6fdf293d1 | |
parent | 6bd2aad2d19dee4ebc45d72f5181cc95e1009f3c (diff) |
Don't clean files that are in the repo.
Noticed by mho@ and drahn@
-rw-r--r-- | kerberosV/lib/hdb/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/kerberosV/lib/hdb/Makefile b/kerberosV/lib/hdb/Makefile index 095f17bb358..e84bb23165f 100644 --- a/kerberosV/lib/hdb/Makefile +++ b/kerberosV/lib/hdb/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.8 2003/05/12 00:59:35 hin Exp $ +# $OpenBSD: Makefile,v 1.9 2003/05/13 03:13:30 hin Exp $ KRBDEPTH=../.. .include <${.CURDIR}/../../Makefile.inc> @@ -30,8 +30,7 @@ regen: asn1_compile ${KRB5SRC}/lib/hdb/hdb.asn1 hdb_asn1 for f in *.x; do mv $$f `echo $$f | sed s,.x$$,.c,g`; done -CLEANFILES+= hdb_err.[ch] \ - hdb_asn1.[ch] ans1_files asn1.h asn1_files +CLEANFILES+= hdb_err.[ch] hdb_asn1.c asn1.h CFLAGS+=-I${KRB5SRC}/lib/hdb -I${KRB5SRC}/lib/asn1 -I../asn1 -I. -I../krb5 |