mirror of
https://github.com/opnsense/src.git
synced 2026-03-02 21:31:02 -05:00
Write a quick and dirty testing program to dump physical memory to help test and debug the smbios.c code in new environments. Sponsored by: Netflix Differential Revision: https://reviews.freebsd.org/D39791
11 lines
169 B
Makefile
11 lines
169 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= smbios
|
|
MAN=
|
|
.PATH: ${SRCTOP}/stand/libsa
|
|
SRCS= main.c
|
|
CFLAGS+= -I${.CURDIR} -I${SRCTOP}/stand/libsa
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
CFLAGS+= -Wno-cast-align
|