summaryrefslogtreecommitdiffstats
path: root/util/nvramtool/Makefile
diff options
context:
space:
mode:
authorRaymond Danks <ray.danks@se-eng.com>2012-04-27 08:46:55 -0600
committerMarc Jones <marcj303@gmail.com>2012-04-29 18:27:30 +0200
commita2937145799999fb482cff2d2faf4925f335005d (patch)
tree4e258e4e1427750d992b71057fceaa0a9af6f8b4 /util/nvramtool/Makefile
parent61e7c289d45f0113925e9d59e7d0e415a049bd1d (diff)
downloadcoreboot-a2937145799999fb482cff2d2faf4925f335005d.tar.gz
coreboot-a2937145799999fb482cff2d2faf4925f335005d.tar.bz2
coreboot-a2937145799999fb482cff2d2faf4925f335005d.zip
nvramtool: Allow build under Cygwin
To build under Cygwin, nvramtool depends upon the package ioperm: http://openwince.sourceforge.net/ioperm/ for sys/io.h and sys/perm.h. This change causes the nvramtool make to correctly include and link against these headers and libraries. Change-Id: If6cd9d324de7bc19830e0018844f42761b28ddd3 Signed-off-by: Raymond Danks <ray.danks@se-eng.com> Reviewed-on: http://review.coreboot.org/940 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'util/nvramtool/Makefile')
-rw-r--r--util/nvramtool/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/util/nvramtool/Makefile b/util/nvramtool/Makefile
index 2a143b7b4717..063bb1acd696 100644
--- a/util/nvramtool/Makefile
+++ b/util/nvramtool/Makefile
@@ -42,6 +42,10 @@ endif
ifeq ($(OS_ARCH), NetBSD)
LDFLAGS = -l$(shell uname -p)
endif
+ifeq ($(shell uname -o), Cygwin)
+LDFLAGS = -lioperm
+CFLAGS += -D__GLIBC__
+endif
all: dep $(PROGRAM)