repo.or.cz
/
freebsd-src
/
fkvm-freebsd.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge commit 'brent/register_phys_mem'
[freebsd-src/fkvm-freebsd.git]
/
usr.sbin
/
kldxref
/
Makefile
blob
2f1550583cf7e24702fdcefa3fc571bf7361c3d5
1
# $FreeBSD$
2
3
PROG
=
kldxref
4
MAN
=
kldxref
.8
5
SRCS
=
kldxref.c ef.c ef_obj.c
6
7
WARNS?
=
2
8
CFLAGS
+=-
fno-strict-aliasing
9
10
.if exists
(
ef_
${
MACHINE_ARCH
}
.c
)
11
SRCS
+=
ef_
${
MACHINE_ARCH
}
.c
12
.
else
13
SRCS
+=
ef_nop.c
14
.
endif
15
16
.
include
<
bsd.prog.mk
>