d92cb48248
when I'm not sure whether or not that directory exists." Today I discovered that rebuilding /usr/include completely from scratch doesn't work, because the libss Makefile tries to install headers into /usr/include/ss, which 'make includes' does not create. The result is that the libss Makefile plants the header files in /usr/include as individual files called 'ss,' with the second one overwriting the first, and the third one overwriting the second. So instead of a directory called /usr/include/ss, you end up with just one file called /usr/include/ss with only the last header file in it. Check out /usr/include/ss on freefall and you'll see what I mean. I've modified the beforeinstall target in the libss Makefile to check for the presence of the ${DESTDIR}/usr/include/lbss directory and to create it if it isn't already there. Hopefully I did it right.
49 lines
1.5 KiB
Makefile
49 lines
1.5 KiB
Makefile
# $Id: Makefile,v 1.5 1995/02/12 02:35:35 phk 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(${.CURDIR}/../libcom_err/obj/.)
|
|
LDADD+= -L${.CURDIR}/../libcom_err/obj
|
|
.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 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 std_rqs.ct
|
|
|
|
beforeinstall:
|
|
-if [ ! -d ${DESTDIR}/usr/include/ss ]; then \
|
|
rm -fr ${DESTDIR}/usr/include/ss && \
|
|
mkdir ${DESTDIR}/usr/include/ss; \
|
|
fi
|
|
-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 -c -o ${BINOWN} -g ${BINGRP} -m 444 ss_err.h \
|
|
${DESTDIR}/usr/include/ss; \
|
|
else \
|
|
true; \
|
|
fi
|
|
|
|
.include <bsd.lib.mk>
|
|
|