mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
35 lines
682 B
Makefile
35 lines
682 B
Makefile
# $FreeBSD$
|
|
|
|
LIB= zfsboot
|
|
INTERNALLIB=
|
|
|
|
SRCS+= zfs.c
|
|
|
|
CFLAGS+= -DBOOTPROG=\"zfsloader\"
|
|
CFLAGS+= -I${.CURDIR}/../common -I${.CURDIR}/../.. -I.
|
|
CFLAGS+= -I${.CURDIR}/../../../lib/libstand
|
|
CFLAGS+= -I${.CURDIR}/../../cddl/boot/zfs
|
|
|
|
.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
|
|
CFLAGS+= -march=i386
|
|
.endif
|
|
.if ${MACHINE_CPUARCH} == "amd64"
|
|
CFLAGS+= -m32
|
|
.endif
|
|
|
|
CFLAGS+= -Wformat -Wall
|
|
|
|
.if ${MACHINE_CPUARCH} == "amd64"
|
|
CLEANFILES+= machine
|
|
machine: .NOMETA
|
|
ln -sf ${.CURDIR}/../../i386/include machine
|
|
.endif
|
|
|
|
.include <bsd.stand.mk>
|
|
.include <bsd.lib.mk>
|
|
|
|
.if ${MACHINE_CPUARCH} == "amd64"
|
|
.if !exists(machine)
|
|
beforedepend ${OBJS}: machine
|
|
.endif
|
|
.endif
|