blob: 5f40e52873adc5e18b95ad157f024158f8059528 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# $OpenBSD: Makefile,v 1.3 1997/05/21 23:02:46 rahnds Exp $
# $NetBSD: Makefile,v 1.4 1995/03/21 09:03:58 cgd 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>
|