blob: e8bb47e2e3ded7b184ec57b53ba6435cc8d6121f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# $OpenBSD: Makefile,v 1.4 1997/09/21 11:34:54 deraadt Exp $
PROG= dd
SRCS= args.c conv.c conv_tab.c dd.c misc.c position.c
.ifdef (${MACHINE} == "powerpc")
# powerpc compiler has a but that coredumps when compiling code
# with 64 bit math and optimization.
CFLAGS+= -O0
.endif
.include <bsd.prog.mk>
|