diff options
author | Leah Rowe <vimuser@noreply.codeberg.org> | 2024-04-26 22:57:47 +0000 |
---|---|---|
committer | Leah Rowe <vimuser@noreply.codeberg.org> | 2024-04-26 22:57:47 +0000 |
commit | e5cc3e557aa007d8a64caa8eee312b41b931c39f (patch) | |
tree | da5695b6d4471dc6ee17cf29449d2588da6bcedd /util/dell-flash-unlock/Makefile | |
parent | c0b4ba2eeadc5bdc6c7b10251561ecf1a9c72a7b (diff) | |
parent | e119ffa54d32bba49ab16db565680a0e386cdeb6 (diff) |
Merge pull request 'dell-flash-unlock: add NetBSD support' (#194) from linear/lbmk:master into master
Reviewed-on: https://codeberg.org/libreboot/lbmk/pulls/194
Diffstat (limited to 'util/dell-flash-unlock/Makefile')
-rw-r--r-- | util/dell-flash-unlock/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/util/dell-flash-unlock/Makefile b/util/dell-flash-unlock/Makefile index fae52dea..aee07167 100644 --- a/util/dell-flash-unlock/Makefile +++ b/util/dell-flash-unlock/Makefile @@ -6,6 +6,9 @@ CFLAGS=-Wall -Wextra -Werror -O2 -pedantic ifeq ($(shell uname), OpenBSD) CFLAGS += -l$(shell uname -p) endif +ifeq ($(shell uname), NetBSD) + CFLAGS += -l$(shell uname -p) +endif SRCS=dell_flash_unlock.c accessors.c all: $(SRCS) accessors.h |