tree: drop last paragraph of GPL copyright header
[coreboot.git] / util / nvramtool / Makefile.inc
blob48f6d8655735fee33285b3e84a7118d57e02b6e1
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.
18 OS_ARCH        = $(shell uname)
19 NVRAMTOOLFLAGS := -I$(top)/util/nvramtool
20 ifeq ($(OS_ARCH), NetBSD)
21 NVRAMTOOLLDLFLAGS = -l$(shell uname -p)
22 endif
23 ifeq ($(shell uname -o 2>/dev/null), Cygwin)
24 NVRAMTOOLFLAGS += -O2 -g -Wall -W -D__GLIBC__
25 HOSTCFLAGS =
26 endif
28 nvramtoolobj :=
29 nvramtoolobj += cli/nvramtool.o cli/opts.o
30 nvramtoolobj += cmos_lowlevel.o cmos_ops.o common.o compute_ip_checksum.o
31 nvramtoolobj += hexdump.o input_file.o layout.o accessors/layout-common.o accessors/layout-text.o accessors/layout-bin.o lbtable.o
32 nvramtoolobj += reg_expr.o cbfs.o accessors/cmos-mem.o
34 ifeq ($(shell uname -s 2>/dev/null | cut -c-7), MINGW32)
35 NVRAMTOOLLDFLAGS += -lregex -lwsock32
36 nvramtoolobj += win32mmap.o
37 endif
39 $(objutil)/nvramtool $(objutil)/nvramtool/accessors $(objutil)/nvramtool/cli:
40         mkdir -p $@
42 $(objutil)/nvramtool/%.o: $(top)/util/nvramtool/%.c
43         printf "    HOSTCC     $(subst $(objutil)/,,$(@))\n"
44         $(HOSTCC) $(NVRAMTOOLFLAGS) $(HOSTCFLAGS) -c -o $@ $<
46 $(objutil)/nvramtool/nvramtool: $(objutil)/nvramtool $(objutil)/nvramtool/accessors $(objutil)/nvramtool/cli $(addprefix $(objutil)/nvramtool/,$(nvramtoolobj))
47         printf "    HOSTCC     $(subst $(objutil)/,,$(@)) (link)\n"
48         $(HOSTCC) $(NVRAMTOOLFLAGS) -o $@ $(addprefix $(objutil)/nvramtool/,$(nvramtoolobj)) $(NVRAMTOOLLDFLAGS)