1993-08-15 23:37:04 +04:00
|
|
|
# from: @(#)bsd.lib.mk 5.26 (Berkeley) 5/2/91
|
1993-11-03 02:14:50 +03:00
|
|
|
# $Id: bsd.lib.mk,v 1.38 1993/11/02 23:14:50 cgd Exp $
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
.if exists(${.CURDIR}/../Makefile.inc)
|
|
|
|
.include "${.CURDIR}/../Makefile.inc"
|
|
|
|
.endif
|
|
|
|
|
1993-11-03 01:02:12 +03:00
|
|
|
.if exists(${.CURDIR}/shlib_version)
|
1993-11-03 02:08:20 +03:00
|
|
|
SHLIB_MAJOR != . ${.CURDIR}/shlib_version ; echo $$major
|
|
|
|
SHLIB_MINOR != . ${.CURDIR}/shlib_version ; echo $$minor
|
1993-11-03 01:02:12 +03:00
|
|
|
.endif
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
.MAIN: all
|
|
|
|
|
|
|
|
# prefer .s to a .c, add .po, remove stuff not used in the BSD libraries
|
1993-09-29 04:02:21 +03:00
|
|
|
# .so used for PIC object files
|
1993-03-21 12:45:37 +03:00
|
|
|
.SUFFIXES:
|
1993-09-29 04:02:21 +03:00
|
|
|
.SUFFIXES: .out .o .po .so .s .c .cc .C .f .y .l .0 .1 .2 .3 .4 .5 .6 .7 .8
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
.c.o:
|
|
|
|
${CC} ${CFLAGS} -c ${.IMPSRC}
|
|
|
|
@${LD} -x -r ${.TARGET}
|
|
|
|
@mv a.out ${.TARGET}
|
|
|
|
|
|
|
|
.c.po:
|
|
|
|
${CC} -p ${CFLAGS} -c ${.IMPSRC} -o ${.TARGET}
|
|
|
|
@${LD} -X -r ${.TARGET}
|
|
|
|
@mv a.out ${.TARGET}
|
|
|
|
|
1993-09-29 04:02:21 +03:00
|
|
|
.c.so:
|
|
|
|
${CC} ${PICFLAG} -DPIC ${CFLAGS} -c ${.IMPSRC} -o ${.TARGET}
|
|
|
|
|
1993-07-17 16:29:17 +04:00
|
|
|
.cc.o .C.o:
|
1993-07-17 16:09:51 +04:00
|
|
|
${CXX} ${CXXFLAGS} -c ${.IMPSRC}
|
|
|
|
@${LD} -x -r ${.TARGET}
|
|
|
|
@mv a.out ${.TARGET}
|
|
|
|
|
1993-07-17 16:29:17 +04:00
|
|
|
.cc.po .C.po:
|
1993-07-17 16:09:51 +04:00
|
|
|
${CXX} -p ${CXXFLAGS} -c ${.IMPSRC} -o ${.TARGET}
|
|
|
|
@${LD} -X -r ${.TARGET}
|
|
|
|
@mv a.out ${.TARGET}
|
|
|
|
|
1993-10-04 23:54:33 +03:00
|
|
|
.cc.so .C.so:
|
|
|
|
${CXX} ${PICFLAG} -DPIC ${CXXFLAGS} -c ${.IMPSRC} -o ${.TARGET}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
.s.o:
|
|
|
|
${CPP} -E ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} | \
|
|
|
|
${AS} -o ${.TARGET}
|
|
|
|
@${LD} -x -r ${.TARGET}
|
|
|
|
@mv a.out ${.TARGET}
|
|
|
|
|
|
|
|
.s.po:
|
|
|
|
${CPP} -E -DPROF ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} | \
|
|
|
|
${AS} -o ${.TARGET}
|
|
|
|
@${LD} -X -r ${.TARGET}
|
|
|
|
@mv a.out ${.TARGET}
|
|
|
|
|
1993-09-29 04:02:21 +03:00
|
|
|
.s.so:
|
|
|
|
${CPP} -E -DPIC ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} | \
|
|
|
|
${AS} -k -o ${.TARGET}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
.if !defined(NOPROFILE)
|
|
|
|
_LIBS=lib${LIB}.a lib${LIB}_p.a
|
|
|
|
.else
|
|
|
|
_LIBS=lib${LIB}.a
|
|
|
|
.endif
|
|
|
|
|
1993-09-29 04:02:21 +03:00
|
|
|
.if !defined(NOPIC)
|
|
|
|
_LIBS+=lib${LIB}_pic.a
|
1993-11-03 02:08:20 +03:00
|
|
|
.if defined(SHLIB_MAJOR) && defined(SHLIB_MINOR)
|
|
|
|
_LIBS+=lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}
|
1993-11-03 01:02:12 +03:00
|
|
|
.endif
|
1993-09-29 04:02:21 +03:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !defined(PICFLAG)
|
|
|
|
PICFLAG=-fpic
|
|
|
|
.endif
|
|
|
|
|
1993-08-16 00:42:39 +04:00
|
|
|
all: ${_LIBS} # llib-l${LIB}.ln
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1993-07-30 07:40:07 +04:00
|
|
|
OBJS+= ${SRCS:N*.h:R:S/$/.o/g}
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
lib${LIB}.a:: ${OBJS}
|
|
|
|
@echo building standard ${LIB} library
|
|
|
|
@rm -f lib${LIB}.a
|
1993-06-17 07:45:08 +04:00
|
|
|
@${AR} cTq lib${LIB}.a `lorder ${OBJS} | tsort` ${LDADD}
|
1993-05-26 15:51:49 +04:00
|
|
|
${RANLIB} lib${LIB}.a
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
POBJS+= ${OBJS:.o=.po}
|
|
|
|
lib${LIB}_p.a:: ${POBJS}
|
|
|
|
@echo building profiled ${LIB} library
|
|
|
|
@rm -f lib${LIB}_p.a
|
1993-06-17 07:45:08 +04:00
|
|
|
@${AR} cTq lib${LIB}_p.a `lorder ${POBJS} | tsort` ${LDADD}
|
1993-05-26 15:51:49 +04:00
|
|
|
${RANLIB} lib${LIB}_p.a
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1993-09-29 04:02:21 +03:00
|
|
|
SOBJS+= ${OBJS:.o=.so}
|
|
|
|
lib${LIB}_pic.a:: ${SOBJS}
|
|
|
|
@echo building shared object ${LIB} library
|
|
|
|
@rm -f lib${LIB}_pic.a
|
|
|
|
@${AR} cTq lib${LIB}_pic.a `lorder ${SOBJS} | tsort` ${LDADD}
|
|
|
|
${RANLIB} lib${LIB}_pic.a
|
|
|
|
|
1993-11-03 02:14:50 +03:00
|
|
|
lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}: lib${LIB}_pic.a
|
|
|
|
@echo building shared ${LIB} library \(version ${SHLIB_MAJOR}.${SHLIB_MINOR}\)
|
1993-11-03 02:08:20 +03:00
|
|
|
@rm -f lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}
|
|
|
|
$(LD) -Bshareable -Bforcearchive \
|
|
|
|
-o lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR} lib${LIB}_pic.a
|
1993-11-03 01:02:12 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
llib-l${LIB}.ln: ${SRCS}
|
|
|
|
${LINT} -C${LIB} ${CFLAGS} ${.ALLSRC:M*.c}
|
|
|
|
|
|
|
|
.if !target(clean)
|
|
|
|
clean:
|
1993-04-20 07:29:36 +04:00
|
|
|
rm -f a.out Errs errs mklog core ${CLEANFILES}
|
|
|
|
rm -f ${OBJS}
|
|
|
|
rm -f ${POBJS} profiled/*.o
|
1993-09-29 04:02:21 +03:00
|
|
|
rm -f ${SOBJS} shared/*.o
|
1993-10-07 04:34:07 +03:00
|
|
|
rm -f lib${LIB}.a lib${LIB}_p.a lib${LIB}_pic.a llib-l${LIB}.ln
|
1993-10-24 03:05:31 +03:00
|
|
|
rm -f lib${LIB}.so.*.*
|
1993-03-21 12:45:37 +03:00
|
|
|
.endif
|
|
|
|
|
1993-08-16 00:59:36 +04:00
|
|
|
cleandir: clean
|
|
|
|
|
1993-08-16 05:41:01 +04:00
|
|
|
.if defined(SRCS)
|
1993-08-15 23:37:04 +04:00
|
|
|
afterdepend:
|
1993-03-21 12:45:37 +03:00
|
|
|
@(TMP=/tmp/_depend$$$$; \
|
1993-10-06 20:54:01 +03:00
|
|
|
sed -e 's/^\([^\.]*\).o[ ]*:/\1.o \1.po \1.so:/' < .depend > $$TMP; \
|
1993-03-21 12:45:37 +03:00
|
|
|
mv $$TMP .depend)
|
1993-08-16 05:41:01 +04:00
|
|
|
.endif
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
.if !target(install)
|
|
|
|
.if !target(beforeinstall)
|
|
|
|
beforeinstall:
|
1993-08-15 23:26:05 +04:00
|
|
|
@install -d -o root -g wheel -m 755 ${DESTDIR}${LIBDIR}
|
1993-03-21 12:45:37 +03:00
|
|
|
.endif
|
|
|
|
|
1993-04-25 09:21:08 +04:00
|
|
|
realinstall:
|
1993-05-26 15:51:49 +04:00
|
|
|
# ranlib lib${LIB}.a
|
1993-04-10 00:05:56 +04:00
|
|
|
install ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} lib${LIB}.a \
|
1993-03-21 12:45:37 +03:00
|
|
|
${DESTDIR}${LIBDIR}
|
|
|
|
${RANLIB} -t ${DESTDIR}${LIBDIR}/lib${LIB}.a
|
1993-05-26 15:48:40 +04:00
|
|
|
.if !defined(NOPROFILE)
|
1993-05-26 15:51:49 +04:00
|
|
|
# ranlib lib${LIB}_p.a
|
1993-04-10 00:05:56 +04:00
|
|
|
install ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
|
1993-03-21 12:45:37 +03:00
|
|
|
lib${LIB}_p.a ${DESTDIR}${LIBDIR}
|
|
|
|
${RANLIB} -t ${DESTDIR}${LIBDIR}/lib${LIB}_p.a
|
1993-05-26 15:48:40 +04:00
|
|
|
.endif
|
1993-10-17 04:09:01 +03:00
|
|
|
.if !defined(NOPIC) && defined(INSTALL_PIC_ARCHIVE)
|
|
|
|
# ranlib lib${LIB}_pic.a
|
|
|
|
install ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
|
|
|
|
lib${LIB}_pic.a ${DESTDIR}${LIBDIR}
|
|
|
|
${RANLIB} -t ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a
|
|
|
|
.endif
|
1993-11-03 02:08:20 +03:00
|
|
|
.if !defined(NOPIC) && defined(SHLIB_MAJOR) && defined(SHLIB_MINOR)
|
1993-10-24 03:05:31 +03:00
|
|
|
install ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
|
1993-11-03 02:08:20 +03:00
|
|
|
lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR} ${DESTDIR}${LIBDIR}
|
1993-10-24 03:05:31 +03:00
|
|
|
.endif
|
1993-04-10 00:05:56 +04:00
|
|
|
# install ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
|
1993-03-21 12:45:37 +03:00
|
|
|
# llib-l${LIB}.ln ${DESTDIR}${LINTLIBDIR}
|
|
|
|
.if defined(LINKS) && !empty(LINKS)
|
|
|
|
@set ${LINKS}; \
|
|
|
|
while test $$# -ge 2; do \
|
|
|
|
l=${DESTDIR}$$1; \
|
|
|
|
shift; \
|
|
|
|
t=${DESTDIR}$$1; \
|
|
|
|
shift; \
|
|
|
|
echo $$t -\> $$l; \
|
|
|
|
rm -f $$t; \
|
|
|
|
ln $$l $$t; \
|
|
|
|
done; true
|
|
|
|
.endif
|
|
|
|
|
1993-04-25 09:21:08 +04:00
|
|
|
install: maninstall
|
|
|
|
maninstall: afterinstall
|
|
|
|
afterinstall: realinstall
|
|
|
|
realinstall: beforeinstall
|
1993-03-21 12:45:37 +03:00
|
|
|
.endif
|
|
|
|
|
1993-04-25 06:51:01 +04:00
|
|
|
.if !defined(NOMAN)
|
1993-03-21 12:45:37 +03:00
|
|
|
.include <bsd.man.mk>
|
1993-04-25 06:51:01 +04:00
|
|
|
.endif
|
|
|
|
|
1993-08-15 23:26:05 +04:00
|
|
|
.include <bsd.obj.mk>
|
1993-08-16 00:42:39 +04:00
|
|
|
.include <bsd.dep.mk>
|