diff options
author | markm <markm@FreeBSD.org> | 1999-09-04 09:52:36 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 1999-09-04 09:52:36 +0000 |
commit | 3f27ca11404bfee6ad95039f41fe9625062bf654 (patch) | |
tree | 0dfea1e6c3c821e4454301f7c4824fe1a7ae9bf6 /lib/libcom_err/Makefile | |
parent | 444a62d6e11e4184062a6f4999c3986590ebbdfc (diff) | |
download | FreeBSD-src-3f27ca11404bfee6ad95039f41fe9625062bf654.zip FreeBSD-src-3f27ca11404bfee6ad95039f41fe9625062bf654.tar.gz |
Build this from contrib/ now.
Diffstat (limited to 'lib/libcom_err/Makefile')
-rw-r--r-- | lib/libcom_err/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/lib/libcom_err/Makefile b/lib/libcom_err/Makefile index 85df262..847497d 100644 --- a/lib/libcom_err/Makefile +++ b/lib/libcom_err/Makefile @@ -1,14 +1,18 @@ # $FreeBSD$ LIB= com_err -SRCS= com_err.c error_message.c et_name.c init_et.c +SRCS= com_err.c error.c MAN3= com_err.3 +COM_ERRDIR= ${.CURDIR}/../../contrib/com_err +CFLAGS+= -I${COM_ERRDIR} SUBDIR= doc beforeinstall: - ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/com_err.h \ - ${DESTDIR}/usr/include + ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \ + ${COM_ERRDIR}/com_err.h ${COM_ERRDIR}/com_right.h \ + ${DESTDIR}/usr/include .include <bsd.lib.mk> +.PATH: ${COM_ERRDIR} |