4.4BSD snapshot (revision 8.1)
[unix-history] / usr / src / lib / libc / Makefile
index 1b52172..3c73d36 100644 (file)
@@ -1,96 +1,50 @@
-#
-# Copyright (c) 1980 Regents of the University of California.
-# All rights reserved.  The Berkeley software License Agreement
-# specifies the terms and conditions for redistribution.
-#
-#      @(#)Makefile    4.19 (Berkeley) %G%
-#
-#
-# The system has two monitoring schemes, utilizing either ``prof''
-# or ``gprof''. DFLMON determines the default profiler; mon.o
-# specifies that ``prof'' is the default, gmon.o specifies that
-# ``gprof'' is the default.
-#
-# Machine dependent routines are located in a subtree which parallels
-# the top directories.  This subtree is identified by the machine name.
-#
-# Compatibility routines are kept in directories with a prefixing
-# ``compat'' (so they all sort together).
-# 
-# The C run-time startup code is always machine dependent and expected
-# to be located in ${MACHINE}/csu
-#
-# All files contain sccsid strings, but these are not compiled into
-# library objects by default, as a space-saving measure.  To produce
-# a library that contains these strings in every object except
-# system call stubs, add -DLIBC_SCCS to DEFS below; to put these
-# strings into system call stubs, use -DSYSLIBC_SCCS.
-#
-# There are two possible methods of doing host name look up.  They are
-# to use the name server or /etc/hosts. HOSTLOOKUP defines which method
-# is to be compiled into libc  :
-#                                                                   
-#      defining HOSTLOOKUP to be "named", compiles the         
-#      host lookup routines that use the BIND name server.
-#
-#      defining HOSTLOOKUP to be "hosttable", compiles
-#      the host lookup routines that use /etc/hosts.
-#
-#HOSTLOOKUP=   hosttable
-HOSTLOOKUP=    named
-#                                                      
-DESTDIR=
-INSTALL=install -m 644
-DFLMON=        mon.o
-MACHINE=vax
-DEFS=
-COMPAT=        compat-4.1 compat-sys5
-ALL=   gen inet net ns stdio ${MACHINE} ${COMPAT}
-TAGSFILE=tags
+#      @(#)Makefile    8.1 (Berkeley) %G%
+#
+# All library objects contain sccsid strings by default; they may be
+# excluded as a space-saving measure.  To produce a library that does
+# not contain these strings, delete -DLIBC_SCCS and -DSYSLIBC_SCCS
+# from CFLAGS below.  To remove these strings from just the system call
+# stubs, remove just -DSYSLIBC_SCCS from CFLAGS.
+LIB=c
+CFLAGS+=-DLIBC_SCCS -DSYSLIBC_SCCS
+AINC=  -I${.CURDIR}/${MACHINE}
+
+.include "${.CURDIR}/db/Makefile.inc"
+.include "${.CURDIR}/compat-43/Makefile.inc"
+.include "${.CURDIR}/gen/Makefile.inc"
+.include "${.CURDIR}/gmon/Makefile.inc"
+.include "${.CURDIR}/locale/Makefile.inc"
+.include "${.CURDIR}/net/Makefile.inc"
+.include "${.CURDIR}/quad/Makefile.inc"
+.include "${.CURDIR}/regex/Makefile.inc"
+.include "${.CURDIR}/stdio/Makefile.inc"
+.include "${.CURDIR}/stdlib/Makefile.inc"
+.include "${.CURDIR}/string/Makefile.inc"
+.include "${.CURDIR}/sys/Makefile.inc"
 
 
-libc.a libc_p.a: ${MACHINE}/csu ${ALL} net/${HOSTLOOKUP}
-       rm -rf t1 tmp
-       -mkdir tmp
-       for i in ${ALL}; do (cd tmp; ar x ../$$i/$${i}lib); done
-       cd tmp; ar x ../net/${HOSTLOOKUP}/hostlib
-       ls tmp/*.o | sort -t/ +1 > t1
-       ar cr libc.a `lorder \`cat t1\` | tsort` ${MACHINE}/csu/${DFLMON}
-       ar ma findiop.o libc.a exit.o
-       ar ma exit.o libc.a fakcu.o
-       rm -f t1 tmp/*
-       for i in ${ALL}; do (cd tmp; ar x ../$$i/$${i}lib_p); done
-       cd tmp; ar x ../net/${HOSTLOOKUP}/hostlib_p
-       ls tmp/*.o | sort -t/ +1 > t1
-       ar cr libc_p.a `lorder \`cat t1\` | tsort` ${MACHINE}/csu/${DFLMON}
-       ar ma findiop.o libc_p.a exit.o
-       ar ma exit.o libc_p.a fakcu.o
-       rm -rf t1 tmp
+KQSRCS=        adddi3.c anddi3.c ashldi3.c ashrdi3.c cmpdi2.c divdi3.c iordi3.c \
+       lshldi3.c lshrdi3.c moddi3.c muldi3.c negdi2.c notdi2.c qdivrem.c \
+       subdi3.c ucmpdi2.c udivdi3.c umoddi3.c xordi3.c
+KSRCS= bcmp.c ffs.c mcount.c rindex.c strcat.c strcmp.c strcpy.c \
+       strlen.c strncpy.c
 
 
-${MACHINE}/csu ${ALL} net/${HOSTLOOKUP}: FRC
-       cd $@; make ${MFLAGS} DEFS=${DEFS}
+libkern: libkern.gen libkern.${MACHINE}
 
 
-FRC:
+libkern.gen: ${KQSRCS} ${KSRCS}
+       cp -p ${.CURDIR}/quad/quad.h ${.ALLSRC} /sys/libkern
 
 
-install: 
-       ${INSTALL} libc.a ${DESTDIR}/lib/libc.a
-       ranlib ${DESTDIR}/lib/libc.a
-       ${INSTALL} libc_p.a ${DESTDIR}/usr/lib/libc_p.a
-       ranlib ${DESTDIR}/usr/lib/libc_p.a
-       cd ${MACHINE}/csu; make DESTDIR=${DESTDIR} install
+libkern.${MACHINE}:: ${KMSRCS}
+.if defined(KMSRCS) && !empty(KMSRCS)
+       cp -p ${.ALLSRC} /sys/libkern/${MACHINE}
+.endif
 
 
-tags:
-       for i in ${ALL}; do \
-               (cd $$i; make ${MFLAGS} TAGSFILE=../${TAGSFILE} tags); \
-       done
-       cd net/${HOSTLOOKUP}; \
-               make ${MFLAGS} TAGSFILE=../../${TAGSFILE} tags
+beforeinstall: tags
+       install -c -o bin -g bin -m 444 tags /var/db/libc.tags
 
 
-clean:
-       for i in ${MACHINE}/csu ${ALL} net/hosttable net/named; \
-               do (cd $$i; make ${MFLAGS} clean); done
-       rm -f t1 tmp/*.o
-       -rmdir tmp
+tags: ${SRCS}
+       ctags ${.ALLSRC:M*.c}
+       egrep -o "^ENTRY(.*)|^FUNC(.*)|^SYSCALL(.*)" ${.ALLSRC:M*.s} | \
+           sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
+           >> tags; sort -o tags tags
 
 
-depend:
-       for i in ${MACHINE}/csu ${ALL} net/hosttable net/named; \
-               do (cd $$i; make ${MFLAGS} DEFS=${DEFS} depend); done
+.include <bsd.lib.mk>