Deleted Added
full compact
Makefile (211725) Makefile (221869)
1# $FreeBSD: head/lib/libdisk/Makefile 211725 2010-08-23 22:24:11Z imp $
1# $FreeBSD: head/lib/libdisk/Makefile 221869 2011-05-14 01:53:38Z attilio $
2
3.if ${MACHINE_CPUARCH} == "ia64"
4_open_disk= open_ia64_disk.c
5.else
6_change = change.c
7_open_disk= open_disk.c
8.endif
9
10LIB= disk
11SRCS= blocks.c ${_change} chunk.c create_chunk.c disk.c ${_open_disk} \
12 rules.c write_disk.c
2
3.if ${MACHINE_CPUARCH} == "ia64"
4_open_disk= open_ia64_disk.c
5.else
6_change = change.c
7_open_disk= open_disk.c
8.endif
9
10LIB= disk
11SRCS= blocks.c ${_change} chunk.c create_chunk.c disk.c ${_open_disk} \
12 rules.c write_disk.c
13.if ${MACHINE} == "sun4v"
14SRCS+= write_sparc64_disk.c
15.else
16SRCS+= write_${MACHINE}_disk.c
13SRCS+= write_${MACHINE}_disk.c
17.endif
18
19INCS= libdisk.h
20
21WARNS?= 2
22
23CFLAGS+= -I${.CURDIR}/../../sys/geom
24
25.if ${MACHINE} == "pc98"

--- 22 unchanged lines hidden ---
14
15INCS= libdisk.h
16
17WARNS?= 2
18
19CFLAGS+= -I${.CURDIR}/../../sys/geom
20
21.if ${MACHINE} == "pc98"

--- 22 unchanged lines hidden ---