Home | History | Annotate | Line # | Download | only in libc
Makefile revision 1.37
      1  1.37      jtc #	$NetBSD: Makefile,v 1.37 1995/03/05 07:12:54 jtc Exp $
      2  1.36      cgd #	@(#)Makefile	8.2 (Berkeley) 2/3/94
      3   1.1      cgd #
      4   1.1      cgd # All library objects contain sccsid strings by default; they may be
      5   1.1      cgd # excluded as a space-saving measure.  To produce a library that does
      6   1.1      cgd # not contain these strings, delete -DLIBC_SCCS and -DSYSLIBC_SCCS
      7   1.1      cgd # from CFLAGS below.  To remove these strings from just the system call
      8   1.1      cgd # stubs, remove just -DSYSLIBC_SCCS from CFLAGS.
      9  1.28      jtc #
     10  1.28      jtc # The NLS (message catalog) functions are always in libc.  To choose that
     11  1.28      jtc # strerror(), perror(), strsignal(), psignal(), etc. actually call the NLS
     12  1.28      jtc # functions, put -DNLS on the CFLAGS line below.
     13   1.4  deraadt #
     14   1.6  deraadt # The YP functions are always in libc. To choose that getpwent() and friends
     15   1.6  deraadt # actually call the YP functions, put -DYP on the CFLAGS line below.
     16   1.4  deraadt 
     17   1.1      cgd LIB=c
     18  1.33      jtc CFLAGS+=-DNLS -DYP -DLIBC_SCCS -DSYSLIBC_SCCS -I${.CURDIR}/include
     19  1.21      cgd AINC=	-I${.CURDIR}/arch/${MACHINE_ARCH}
     20  1.27  mycroft .if defined(DESTDIR)
     21  1.27  mycroft AINC+=	-nostdinc -idirafter ${DESTDIR}/usr/include
     22  1.27  mycroft .endif
     23  1.36      cgd CLEANFILES+=tags
     24   1.9  deraadt 
     25  1.21      cgd .if exists (${.CURDIR}/arch/${MACHINE_ARCH}/Makefile.inc)
     26  1.21      cgd .PATH:	${.CURDIR}/arch/${MACHINE_ARCH}
     27  1.21      cgd .include "${.CURDIR}/arch/${MACHINE_ARCH}/Makefile.inc"
     28   1.9  deraadt .endif
     29   1.1      cgd 
     30   1.7      cgd .include "${.CURDIR}/db/Makefile.inc"
     31   1.1      cgd .include "${.CURDIR}/compat-43/Makefile.inc"
     32   1.1      cgd .include "${.CURDIR}/gen/Makefile.inc"
     33  1.24      cgd .include "${.CURDIR}/gmon/Makefile.inc"
     34   1.1      cgd .include "${.CURDIR}/locale/Makefile.inc"
     35   1.1      cgd .include "${.CURDIR}/net/Makefile.inc"
     36  1.25      jtc .include "${.CURDIR}/nls/Makefile.inc"
     37  1.34      cgd .if (${MACHINE_ARCH} != "alpha")
     38  1.24      cgd .include "${.CURDIR}/quad/Makefile.inc"
     39  1.34      cgd .endif
     40  1.24      cgd .include "${.CURDIR}/regex/Makefile.inc"
     41  1.24      cgd .include "${.CURDIR}/rpc/Makefile.inc"
     42   1.1      cgd .include "${.CURDIR}/stdio/Makefile.inc"
     43   1.1      cgd .include "${.CURDIR}/stdlib/Makefile.inc"
     44   1.1      cgd .include "${.CURDIR}/string/Makefile.inc"
     45   1.1      cgd .include "${.CURDIR}/sys/Makefile.inc"
     46   1.4  deraadt .include "${.CURDIR}/yp/Makefile.inc"
     47   1.1      cgd 
     48  1.30      cgd LIBKERN=	${.CURDIR}/../../sys/lib/libkern
     49  1.14      jtc 
     50  1.18      cgd KSRCS=	bcmp.c bzero.c ffs.c strcat.c strcmp.c strcpy.c strlen.c strncmp.c \
     51  1.31      cgd 	strncpy.c htonl.c htons.c ntohl.c ntohs.c
     52  1.35      cgd .if (${MACHINE_ARCH} != "alpha")
     53  1.22      cgd KSRCS+=	adddi3.c anddi3.c ashldi3.c ashrdi3.c cmpdi2.c divdi3.c iordi3.c \
     54  1.22      cgd 	lshldi3.c lshrdi3.c moddi3.c muldi3.c negdi2.c notdi2.c qdivrem.c \
     55  1.22      cgd 	subdi3.c  ucmpdi2.c udivdi3.c umoddi3.c xordi3.c
     56  1.22      cgd KINCLUDES+=	quad/quad.h
     57  1.35      cgd .endif
     58  1.14      jtc 
     59  1.15      jtc copy-to-libkern:	copy-to-libkern-machind copy-to-libkern-machdep
     60  1.15      jtc 
     61  1.15      jtc copy-to-libkern-machind: ${KSRCS}
     62  1.14      jtc 	cp -p ${.ALLSRC} ${LIBKERN}
     63  1.35      cgd .if defined(KINCLUDES) && !empty(KINCLUDES)
     64  1.22      cgd 	(cd ${.CURDIR} ; cp -p ${KINCLUDES} ${LIBKERN})
     65  1.35      cgd .endif
     66  1.14      jtc 
     67  1.15      jtc copy-to-libkern-machdep: ${KMSRCS}
     68  1.15      jtc .if defined(KMSRCS) && !empty(KMSRCS)
     69  1.26  deraadt 	cp -p ${.ALLSRC} ${LIBKERN}/arch/${MACHINE_ARCH}
     70  1.18      cgd .endif
     71  1.18      cgd .if defined(KMINCLUDES) && !empty(KMINCLUDES)
     72  1.26  deraadt 	(cd ${.CURDIR} ; cp -p ${KMINCLUDES} ${LIBKERN}/arch/${MACHINE_ARCH})
     73  1.15      jtc .endif
     74  1.15      jtc 
     75  1.14      jtc rm-from-libkern:
     76  1.14      jtc 	for i in ${KSRCS}; do rm -f ${LIBKERN}/$$i; done
     77  1.15      jtc .if defined(KMSRCS) && !empty(KMSRCS)
     78  1.26  deraadt 	for i in ${KMSRCS}; do rm -f ${LIBKERN}/arch/${MACHINE_ARCH}/$$i; done
     79  1.15      jtc .endif
     80  1.36      cgd 
     81  1.36      cgd beforeinstall: tags
     82  1.36      cgd 	install -c -o bin -g bin -m 444 tags /var/db/libc.tags
     83  1.36      cgd 
     84  1.36      cgd tags: ${SRCS}
     85  1.36      cgd 	ctags ${.ALLSRC:M*.c}
     86  1.37      jtc 	egrep "^ENTRY(.*)|^FUNC(.*)|^SYSCALL(.*)" /dev/null ${.ALLSRC:M*.S} | \
     87  1.36      cgd 	    sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
     88  1.36      cgd 	    >> tags; sort -o tags tags
     89  1.32      cgd 
     90   1.1      cgd .include <bsd.lib.mk>
     91