Remove address from GPLv2 headers
[coreboot.git] / util / nvramtool / Makefile.inc
blobdc45edec4bc54d26c7de0fc25bbd2acfad48c29a
1 ##
2 ## Integration of nvramtool into the coreboot build system
3 ##
4 ## (C) 2005-2008 coresystems GmbH
5 ## written by Stefan Reinauer <stepan@coresystems.de>
6 ## (C) 2012 secunet Security Networks AG
7 ##
8 ## This program is free software; you can redistribute it and/or modify
9 ## it under the terms of the GNU General Public License as published by
10 ## the Free Software Foundation; version 2 of the License.
12 ## This program is distributed in the hope that it will be useful,
13 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 ## GNU General Public License for more details.
17 ## You should have received a copy of the GNU General Public License
18 ## along with this program; if not, write to the Free Software
19 ## Foundation, Inc.
22 OS_ARCH        = $(shell uname)
23 NVRAMTOOLFLAGS := -I$(top)/util/nvramtool
24 ifeq ($(OS_ARCH), NetBSD)
25 NVRAMTOOLLDLFLAGS = -l$(shell uname -p)
26 endif
27 ifeq ($(shell uname -o 2>/dev/null), Cygwin)
28 NVRAMTOOLFLAGS += -O2 -g -Wall -W -D__GLIBC__
29 HOSTCFLAGS =
30 endif
32 nvramtoolobj :=
33 nvramtoolobj += cli/nvramtool.o cli/opts.o
34 nvramtoolobj += cmos_lowlevel.o cmos_ops.o common.o compute_ip_checksum.o
35 nvramtoolobj += hexdump.o input_file.o layout.o accessors/layout-common.o accessors/layout-text.o accessors/layout-bin.o lbtable.o
36 nvramtoolobj += reg_expr.o cbfs.o accessors/cmos-mem.o
38 ifeq ($(shell uname -s 2>/dev/null | cut -c-7), MINGW32)
39 NVRAMTOOLLDFLAGS += -lregex -lwsock32
40 nvramtoolobj += win32mmap.o
41 endif
43 $(objutil)/nvramtool $(objutil)/nvramtool/accessors $(objutil)/nvramtool/cli:
44         mkdir -p $@
46 $(objutil)/nvramtool/%.o: $(top)/util/nvramtool/%.c
47         printf "    HOSTCC     $(subst $(objutil)/,,$(@))\n"
48         $(HOSTCC) $(NVRAMTOOLFLAGS) $(HOSTCFLAGS) -c -o $@ $<
50 $(objutil)/nvramtool/nvramtool: $(objutil)/nvramtool $(objutil)/nvramtool/accessors $(objutil)/nvramtool/cli $(addprefix $(objutil)/nvramtool/,$(nvramtoolobj))
51         printf "    HOSTCC     $(subst $(objutil)/,,$(@)) (link)\n"
52         $(HOSTCC) $(NVRAMTOOLFLAGS) -o $@ $(addprefix $(objutil)/nvramtool/,$(nvramtoolobj)) $(NVRAMTOOLLDFLAGS)