blob: 248937e5433adf9341c225badce1e7e9e6d084e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $OpenBSD: Makefile.inc,v 1.4 2002/08/08 05:57:26 mickey Exp $
KMINCLUDES= arch/hppa/DEFS.h arch/hppa/SYS.h prefix.h
KMSRCS= bcopy.m4 ffs.S
SRCS+= memmove.S
CLEANFILES+= memmove.S cerror.S
cerror.S:
@echo > cerror.S
memmove.S: ${LIBCSRCDIR}/arch/hppa/string/bcopy.m4
@echo 'building ${.TARGET} from ${.ALLSRC}'
@m4 -DNAME=bcopy ${.ALLSRC} > ${.TARGET}
|