diff options
author | bde <bde@FreeBSD.org> | 1996-09-05 17:16:10 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1996-09-05 17:16:10 +0000 |
commit | 11546f4616454e8fe6b6b85898bc2f22f9930985 (patch) | |
tree | 235e8fcbe852dee096eebfd2c176b6d10c0afa2c /lib/libss | |
parent | 38fd8fd26ef8cf2f925107c1267dd58f6e623be9 (diff) | |
download | FreeBSD-src-11546f4616454e8fe6b6b85898bc2f22f9930985.zip FreeBSD-src-11546f4616454e8fe6b6b85898bc2f22f9930985.tar.gz |
Fixed DPADD.
Diffstat (limited to 'lib/libss')
-rw-r--r-- | lib/libss/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/libss/Makefile b/lib/libss/Makefile index 54c58e1..44bf476 100644 --- a/lib/libss/Makefile +++ b/lib/libss/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.12 1996/06/24 04:23:28 jkh Exp $ +# $Id: Makefile,v 1.13 1996/08/30 02:04:37 peter Exp $ LIB= ss SRCS= ss_err.c data.c error.c execute_cmd.c help.c invocation.c list_rqs.c \ @@ -7,11 +7,12 @@ SRCS= ss_err.c data.c error.c execute_cmd.c help.c invocation.c list_rqs.c \ CFLAGS+= -I. -I${.CURDIR} -DPOSIX -DIN_LIBSS CLEANFILES+= ss ss_err.c ss_err.h std_rqs.c .if exists(${.OBJDIR}/../libcom_err) -LDADD+= -L${.OBJDIR}/../libcom_err +LIBDESTDIR= ${.OBJDIR}/../libcom_err .else -LDADD+= -L${.CURDIR}/../libcom_err +LIBDESTDIR= ${.CURDIR}/../libcom_err .endif -LDADD+= -lcom_err +DPADD= ${LIBDESTDIR}/libcom_err.a +LDADD= -L${LIBDESTDIR} -lcom_err ss_err.h ss_err.c: ${.CURDIR}/ss_err.et test -e ss_err.et || ln -s ${.CURDIR}/ss_err.et . |