diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1996-11-11 04:55:06 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1996-11-11 04:55:06 +0000 |
commit | 066a987bf16f54e03a964424714abf17c430d1fb (patch) | |
tree | c82c969f6f69136b422aed922ae40829a4dcf7ce /lib/libcom_err/Makefile | |
parent | e1f3fe3d0e5692a676c8be1703f378fb580ae38f (diff) |
Move libcom_err out of Kerberos, change include location.
Diffstat (limited to 'lib/libcom_err/Makefile')
-rw-r--r-- | lib/libcom_err/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/libcom_err/Makefile b/lib/libcom_err/Makefile new file mode 100644 index 00000000000..1dc2e96be56 --- /dev/null +++ b/lib/libcom_err/Makefile @@ -0,0 +1,14 @@ +# $OpenBSD: Makefile,v 1.1 1996/11/11 04:55:02 downsj Exp $ + +LIB= com_err +SRCS= com_err.c error_message.c et_name.c init_et.c +CFLAGS+=-I${.CURDIR} +MAN= com_err.3 + +includes: + -cd ${.CURDIR}; cmp -s com_err.h ${DESTDIR}/usr/include/com_err.h > \ + /dev/null 2>&1 || \ + install -c -o ${BINOWN} -g ${BINGRP} -m 444 com_err.h \ + ${DESTDIR}/usr/include/com_err.h + +.include <bsd.lib.mk> |