Deleted Added
full compact
Makefile (1849) Makefile (1916)
1# @(#)Makefile 8.2 (Berkeley) 2/3/94
2#
3# All library objects contain sccsid strings by default; they may be
4# excluded as a space-saving measure. To produce a library that does
5# not contain these strings, delete -DLIBC_SCCS and -DSYSLIBC_SCCS
6# from CFLAGS below. To remove these strings from just the system call
7# stubs, remove just -DSYSLIBC_SCCS from CFLAGS.
8LIB=c

--- 26 unchanged lines hidden (view full) ---

35libkern.gen: ${KQSRCS} ${KSRCS}
36 cp -p ${.CURDIR}/quad/quad.h ${.ALLSRC} /sys/libkern
37
38libkern.${MACHINE}:: ${KMSRCS}
39.if defined(KMSRCS) && !empty(KMSRCS)
40 cp -p ${.ALLSRC} /sys/libkern/${MACHINE}
41.endif
42
1# @(#)Makefile 8.2 (Berkeley) 2/3/94
2#
3# All library objects contain sccsid strings by default; they may be
4# excluded as a space-saving measure. To produce a library that does
5# not contain these strings, delete -DLIBC_SCCS and -DSYSLIBC_SCCS
6# from CFLAGS below. To remove these strings from just the system call
7# stubs, remove just -DSYSLIBC_SCCS from CFLAGS.
8LIB=c

--- 26 unchanged lines hidden (view full) ---

35libkern.gen: ${KQSRCS} ${KSRCS}
36 cp -p ${.CURDIR}/quad/quad.h ${.ALLSRC} /sys/libkern
37
38libkern.${MACHINE}:: ${KMSRCS}
39.if defined(KMSRCS) && !empty(KMSRCS)
40 cp -p ${.ALLSRC} /sys/libkern/${MACHINE}
41.endif
42
43beforeinstall: tags
44 install -c -o bin -g bin -m 444 tags /var/db/libc.tags
43#beforeinstall: tags
44# install -c -o bin -g bin -m 444 tags /var/db/libc.tags
45
46tags: ${SRCS}
47 ctags ${.ALLSRC:M*.c}
48 egrep -o "^ENTRY(.*)|^FUNC(.*)|^SYSCALL(.*)" ${.ALLSRC:M*.s} | \
49 sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
50 >> tags; sort -o tags tags
51
52.include <bsd.lib.mk>
45
46tags: ${SRCS}
47 ctags ${.ALLSRC:M*.c}
48 egrep -o "^ENTRY(.*)|^FUNC(.*)|^SYSCALL(.*)" ${.ALLSRC:M*.s} | \
49 sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
50 >> tags; sort -o tags tags
51
52.include <bsd.lib.mk>