xref: /csrg-svn/sys/libkern/Makefile (revision 60939)
1#	@(#)Makefile	7.9 (Berkeley) 06/01/93
2
3LIB=	kern
4CFLAGS+= -I${.CURDIR} -I${.CURDIR}/..
5SRCS=	adddi3.c anddi3.c ashldi3.c ashrdi3.c bcmp.c cmpdi2.c divdi3.c \
6	ffs.c iordi3.c locc.c lshldi3.c lshrdi3.c mcount.c moddi3.c \
7	muldi3.c negdi2.c notdi2.c qdivrem.c random.c rindex.c scanc.c \
8	skpc.c strcat.c strcmp.c strcpy.c strlen.c strncpy.c subdi3.c \
9	ucmpdi2.c udivdi3.c umoddi3.c xordi3.c
10
11.if exists(${.CURDIR}/${MACHINE}/Makefile.inc)
12.PATH: ${.CURDIR}/${MACHINE}
13.include "${.CURDIR}/${MACHINE}/Makefile.inc"
14.endif
15
16# mcount cannot be compiled with profiling
17mcount.po: mcount.o
18	cp mcount.o mcount.po
19
20.include <bsd.lib.mk>
21