diff options
author | ru <ru@FreeBSD.org> | 2002-04-25 10:23:10 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2002-04-25 10:23:10 +0000 |
commit | 6b33a417059de3aa4a546e125216b858ab66ac21 (patch) | |
tree | 40cbe8afc0603c5f2d7c9f8aec2faf492956f297 | |
parent | 65f1d89e919b31ff7c64e739575aee6690680e9e (diff) | |
download | FreeBSD-src-6b33a417059de3aa4a546e125216b858ab66ac21.zip FreeBSD-src-6b33a417059de3aa4a546e125216b858ab66ac21.tar.gz |
Replaced hacks in previous revision with the "standard" way of
building internal libraries. This also unbreaks this makefile
after recent share/mk changes.
-rw-r--r-- | kerberos5/lib/libvers/Makefile | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/kerberos5/lib/libvers/Makefile b/kerberos5/lib/libvers/Makefile index a3bc726..6f31ea5 100644 --- a/kerberos5/lib/libvers/Makefile +++ b/kerberos5/lib/libvers/Makefile @@ -1,6 +1,9 @@ # $FreeBSD$ LIB= vers +INTERNALLIB= YES +INTERNALSTATICLIB= YES +NOPIC= YES CFLAGS+= -I${KRB5DIR}/include \ -I${ROKENOBJDIR} \ @@ -11,16 +14,8 @@ SRCS= \ print_version.c \ print_version.h -install: - -__initialized__: - -.include "../../Makefile.inc" - .include <bsd.lib.mk> -beforedepend all: print_version.h - .PATH: ${KRB5DIR}/lib/vers build-tools: make-print-version |