NetBSD/share/mk/bsd.lib.mk

191 lines
4.7 KiB
Makefile
Raw Normal View History

# $NetBSD: bsd.lib.mk,v 1.53 1994/08/09 13:04:28 pk Exp $
# @(#)bsd.lib.mk 5.26 (Berkeley) 5/2/91
1993-03-21 12:45:37 +03:00
.if exists(${.CURDIR}/../Makefile.inc)
.include "${.CURDIR}/../Makefile.inc"
.endif
.if exists(${.CURDIR}/shlib_version)
SHLIB_MAJOR != . ${.CURDIR}/shlib_version ; echo $$major
SHLIB_MINOR != . ${.CURDIR}/shlib_version ; echo $$minor
.endif
1993-03-21 12:45:37 +03:00
.MAIN: all
1993-12-04 04:28:39 +03:00
# prefer .S to a .c, add .po, remove stuff not used in the BSD libraries
# .so used for PIC object files
1993-03-21 12:45:37 +03:00
.SUFFIXES:
1994-06-30 10:47:38 +04:00
.SUFFIXES: .out .o .po .so .S .s .c .cc .C .f .y .l .m4
1993-03-21 12:45:37 +03:00
.c.o:
${CC} ${CFLAGS} ${CPPFLAGS} -c ${.IMPSRC}
1993-03-21 12:45:37 +03:00
@${LD} -x -r ${.TARGET}
@mv a.out ${.TARGET}
.c.po:
${CC} -p ${CFLAGS} ${CPPFLAGS} -c ${.IMPSRC} -o ${.TARGET}
1993-03-21 12:45:37 +03:00
@${LD} -X -r ${.TARGET}
@mv a.out ${.TARGET}
.c.so:
${CC} ${PICFLAG} -DPIC ${CFLAGS} ${CPPFLAGS} -c ${.IMPSRC} -o ${.TARGET}
@${LD} -x -r ${.TARGET}
@mv a.out ${.TARGET}
1993-07-17 16:29:17 +04:00
.cc.o .C.o:
${CXX} ${CXXFLAGS} ${CPPFLAGS} -c ${.IMPSRC}
1993-07-17 16:09:51 +04:00
@${LD} -x -r ${.TARGET}
@mv a.out ${.TARGET}
1993-07-17 16:29:17 +04:00
.cc.po .C.po:
${CXX} -p ${CXXFLAGS} ${CPPFLAGS} -c ${.IMPSRC} -o ${.TARGET}
1993-07-17 16:09:51 +04:00
@${LD} -X -r ${.TARGET}
@mv a.out ${.TARGET}
1993-10-04 23:54:33 +03:00
.cc.so .C.so:
${CXX} ${PICFLAG} -DPIC ${CXXFLAGS} ${CPPFLAGS} -c ${.IMPSRC} -o ${.TARGET}
@${LD} -x -r ${.TARGET}
@mv a.out ${.TARGET}
1993-10-04 23:54:33 +03:00
1993-12-04 04:28:39 +03:00
.S.o .s.o:
${CPP} ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} | \
1993-03-21 12:45:37 +03:00
${AS} -o ${.TARGET}
@${LD} -x -r ${.TARGET}
@mv a.out ${.TARGET}
1993-12-04 04:28:39 +03:00
.S.po .s.po:
${CPP} -DPROF ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} | \
1993-03-21 12:45:37 +03:00
${AS} -o ${.TARGET}
@${LD} -X -r ${.TARGET}
@mv a.out ${.TARGET}
1993-12-04 04:28:39 +03:00
.S.so .s.so:
${CPP} -DPIC ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} | \
${AS} -k -o ${.TARGET}
@${LD} -x -r ${.TARGET}
@mv a.out ${.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
.if !defined(NOPIC)
_LIBS+=lib${LIB}_pic.a
.if defined(SHLIB_MAJOR) && defined(SHLIB_MINOR)
_LIBS+=lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}
.endif
.endif
.if !defined(PICFLAG)
PICFLAG=-fpic
.endif
1994-06-30 09:21:28 +04:00
all: ${_LIBS} _SUBDIRUSE # llib-l${LIB}.ln
1993-03-21 12:45:37 +03: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
@${AR} cq lib${LIB}.a `lorder ${OBJS} | tsort`
${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
@${AR} cq lib${LIB}_p.a `lorder ${POBJS} | tsort`
${RANLIB} lib${LIB}_p.a
1993-03-21 12:45:37 +03:00
SOBJS+= ${OBJS:.o=.so}
lib${LIB}_pic.a:: ${SOBJS}
@echo building shared object ${LIB} library
@rm -f lib${LIB}_pic.a
@${AR} cq lib${LIB}_pic.a `lorder ${SOBJS} | tsort`
${RANLIB} lib${LIB}_pic.a
lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}: lib${LIB}_pic.a ${DPADD}
@echo building shared ${LIB} library \(version ${SHLIB_MAJOR}.${SHLIB_MINOR}\)
@rm -f lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}
$(LD) -x -Bshareable -Bforcearchive \
-o lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR} lib${LIB}_pic.a ${LDADD}
1993-03-21 12:45:37 +03:00
llib-l${LIB}.ln: ${SRCS}
${LINT} -C${LIB} ${CFLAGS} ${.ALLSRC:M*.c}
.if !target(clean)
1994-06-30 09:21:28 +04:00
clean: _SUBDIRUSE
1994-03-24 19:11:38 +03:00
rm -f a.out [Ee]rrs mklog core *.core ${CLEANFILES}
rm -f ${OBJS}
rm -f ${POBJS} profiled/*.o
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
rm -f lib${LIB}.so.*.*
1993-03-21 12:45:37 +03:00
.endif
1994-06-30 09:21:28 +04:00
cleandir: _SUBDIRUSE clean
1993-08-16 05:41:01 +04:00
.if defined(SRCS)
afterdepend:
1993-03-21 12:45:37 +03:00
@(TMP=/tmp/_depend$$$$; \
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:
.endif
realinstall:
# ranlib lib${LIB}.a
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
.if !defined(NOPROFILE)
# ranlib lib${LIB}_p.a
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
.endif
1993-11-14 19:45:05 +03:00
.if !defined(NOPIC)
# 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
.if !defined(NOPIC) && defined(SHLIB_MAJOR) && defined(SHLIB_MINOR)
install ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR} ${DESTDIR}${LIBDIR}
.endif
# 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
1994-06-30 09:21:28 +04:00
install: maninstall _SUBDIRUSE
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
.include <bsd.obj.mk>
.include <bsd.dep.mk>
1994-06-30 09:21:28 +04:00
.include <bsd.subdir.mk>