diff options
author | Ian Moffett <ian@osmora.org> | 2025-08-02 01:41:24 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-08-02 01:41:24 -0400 |
commit | 2c6c07311295fadf2e6bbe855196beecefb3f128 (patch) | |
tree | f1c29866f96fb7d66d64f08eb9fa60cd42e782ba /usr.bin/dmidump/Makefile | |
parent | 97df5861b690300d5d98689c66fe0c676ca4d8bd (diff) |
usr: Add 'dmidump' program for DMI infomation
Add dmidump utility that reports information from DMI (aka system
management BIOS).
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'usr.bin/dmidump/Makefile')
-rw-r--r-- | usr.bin/dmidump/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/usr.bin/dmidump/Makefile b/usr.bin/dmidump/Makefile new file mode 100644 index 0000000..e9cd625 --- /dev/null +++ b/usr.bin/dmidump/Makefile @@ -0,0 +1,6 @@ +include user.mk + +CFILES = $(shell find . -name "*.c") + +$(ROOT)/base/usr/bin/dmidump: + gcc $(CFILES) -o $@ $(INTERNAL_CFLAGS) |