summaryrefslogtreecommitdiffstats
path: root/lib/libss/Makefile
blob: cebc01b41aaccc96a19cedf24172f776f491bf6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#	$Id: Makefile,v 1.11 1996/05/07 23:19:15 wosch Exp $

LIB=	ss
SRCS=	ss_err.c data.c error.c execute_cmd.c help.c invocation.c list_rqs.c \
	listen.c pager.c parse.c prompt.c request_tbl.c requests.c \
	std_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
.else
LDADD+=	-L${.CURDIR}/../libcom_err
.endif
LDADD+=	-lcom_err

ss_err.h ss_err.c:	${.CURDIR}/ss_err.et
	test -e ss_err.et || ln -s ${.CURDIR}/ss_err.et .
	compile_et ss_err.et
	-test -h ss_err.et && rm -f ss_err.et

std_rqs.c:		${.CURDIR}/std_rqs.ct
	test -e std_rqs.ct || ln -s ${.CURDIR}/std_rqs.ct .
	mk_cmds std_rqs.ct
	-test -h std_rqs.ct && rm -f std_rqs.ct

beforeinstall:
	-cd ${.CURDIR}; cmp -s ss.h ${DESTDIR}/usr/include/ss/ss.h || \
	    ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ss.h \
	    ${DESTDIR}/usr/include/ss
	-cd ${.CURDIR}; cmp -s copyright.h \
	    ${DESTDIR}/usr/include/ss/mit-sipb-copyright.h || \
	    ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 copyright.h \
	    ${DESTDIR}/usr/include/ss/mit-sipb-copyright.h
	-cd ${.OBJDIR}; \
	    if [ -f ss_err.h ]; then \
		cmp -s ss_err.h ${DESTDIR}/usr/include/ss/ss_err.h || \
		${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 ss_err.h \
		${DESTDIR}/usr/include/ss; \
	    else \
		true; \
	    fi

.include <bsd.lib.mk>

OpenPOWER on IntegriCloud