diff options
Diffstat (limited to 'util/flashrom/Makefile')
-rw-r--r-- | util/flashrom/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/util/flashrom/Makefile b/util/flashrom/Makefile index a0c195bc29..86f91d4a34 100644 --- a/util/flashrom/Makefile +++ b/util/flashrom/Makefile @@ -18,6 +18,10 @@ OS_ARCH = $(shell uname) ifneq ($(OS_ARCH), SunOS) STRIP_ARGS = -s endif +ifeq ($(OS_ARCH), Darwin) +CFLAGS += -I/usr/local/include +LDFLAGS += -framework IOKit -framework DirectIO -L/usr/local/lib +endif ifeq ($(OS_ARCH), FreeBSD) CFLAGS += -I/usr/local/include LDFLAGS += -L/usr/local/lib |