blob: 7ad0f09341696745c034661666d2f97a3c908b7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $OpenBSD: Makefile.inc,v 1.5 2002/08/08 06:00:20 mickey Exp $
KMINCLUDES= arch/hppa/DEFS.h arch/hppa/SYS.h prefix.h
KMSRCS= bcopy.m4
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}
|