Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 1 | # |
Uwe Hermann | f78cff1 | 2009-06-12 14:05:25 +0000 | [diff] [blame] | 2 | # This file is part of the flashrom project. |
| 3 | # |
| 4 | # Copyright (C) 2005 coresystems GmbH <stepan@coresystems.de> |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 5 | # Copyright (C) 2009,2010,2012 Carl-Daniel Hailfinger |
Uwe Hermann | f78cff1 | 2009-06-12 14:05:25 +0000 | [diff] [blame] | 6 | # |
| 7 | # This program is free software; you can redistribute it and/or modify |
| 8 | # it under the terms of the GNU General Public License as published by |
| 9 | # the Free Software Foundation; version 2 of the License. |
| 10 | # |
| 11 | # This program is distributed in the hope that it will be useful, |
| 12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | # GNU General Public License for more details. |
| 15 | # |
| 16 | # You should have received a copy of the GNU General Public License |
| 17 | # along with this program; if not, write to the Free Software |
| 18 | # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 19 | # |
Ronald G. Minnich | 5e5f75e | 2002-01-29 18:21:41 +0000 | [diff] [blame] | 20 | |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 21 | PROGRAM = flashrom |
Ronald G. Minnich | eaab50b | 2003-09-12 22:41:53 +0000 | [diff] [blame] | 22 | |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 23 | ############################################################################### |
| 24 | # Defaults for the toolchain. |
| 25 | |
| 26 | # If you want to cross-compile, just run e.g. |
| 27 | # make CC=i586-pc-msdosdjgpp-gcc |
| 28 | # You may have to specify STRIP/AR/RANLIB as well. |
Carl-Daniel Hailfinger | b7bce8a | 2012-08-14 21:36:11 +0000 | [diff] [blame] | 29 | # |
| 30 | # Note for anyone editing this Makefile: gnumake will happily ignore any |
| 31 | # changes in this Makefile to variables set on the command line. |
Uwe Hermann | c2a9c9c | 2009-05-14 14:51:14 +0000 | [diff] [blame] | 32 | CC ?= gcc |
Carl-Daniel Hailfinger | 50415d2 | 2010-03-21 14:54:57 +0000 | [diff] [blame] | 33 | STRIP ?= strip |
Christian Ruppert | db9d9f4 | 2009-05-14 14:17:07 +0000 | [diff] [blame] | 34 | INSTALL = install |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 35 | DIFF = diff |
Christian Ruppert | db9d9f4 | 2009-05-14 14:17:07 +0000 | [diff] [blame] | 36 | PREFIX ?= /usr/local |
Uwe Hermann | 56b2cb0 | 2009-05-21 15:59:58 +0000 | [diff] [blame] | 37 | MANDIR ?= $(PREFIX)/share/man |
Carl-Daniel Hailfinger | 50415d2 | 2010-03-21 14:54:57 +0000 | [diff] [blame] | 38 | CFLAGS ?= -Os -Wall -Wshadow |
Carl-Daniel Hailfinger | a23041c | 2009-06-12 14:49:10 +0000 | [diff] [blame] | 39 | EXPORTDIR ?= . |
Patrick Georgi | 97bc95c | 2011-03-08 07:17:44 +0000 | [diff] [blame] | 40 | AR ?= ar |
| 41 | RANLIB ?= ranlib |
Stefan Tauner | fd0d413 | 2012-09-25 21:24:55 +0000 | [diff] [blame] | 42 | # The following parameter changes the default programmer that will be used if there is no -p/--programmer |
| 43 | # argument given when running flashrom. The predefined setting does not enable any default so that every |
| 44 | # user has to declare the programmer he wants to use on every run. The rationale for this to be not set |
| 45 | # (to e.g. the internal programmer) is that forgetting to specify this when working with another programmer |
| 46 | # easily puts the system attached to the default programmer at risk (e.g. you want to flash coreboot to another |
| 47 | # system attached to an external programmer while the default programmer is set to the internal programmer, and |
| 48 | # you forget to use the -p parameter. This would (try to) overwrite the existing firmware of the computer |
| 49 | # running flashrom). Please do not enable this without thinking about the possible consequences. Possible |
| 50 | # values are those specified in enum programmer in programmer.h (which depend on other CONFIG_* options |
| 51 | # evaluated below, namely those that enable/disable the various programmers). |
| 52 | # Compilation will fail for unspecified values. |
| 53 | CONFIG_DEFAULT_PROGRAMMER ?= PROGRAMMER_INVALID |
Christian Ruppert | db9d9f4 | 2009-05-14 14:17:07 +0000 | [diff] [blame] | 54 | |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 55 | # If your compiler spits out excessive warnings, run make WARNERROR=no |
| 56 | # You shouldn't have to change this flag. |
Carl-Daniel Hailfinger | 50415d2 | 2010-03-21 14:54:57 +0000 | [diff] [blame] | 57 | WARNERROR ?= yes |
| 58 | |
| 59 | ifeq ($(WARNERROR), yes) |
| 60 | CFLAGS += -Werror |
| 61 | endif |
| 62 | |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 63 | ############################################################################### |
| 64 | # General OS/architecture specific settings. |
| 65 | |
Carl-Daniel Hailfinger | 33a65a0 | 2011-12-20 00:51:44 +0000 | [diff] [blame] | 66 | # HOST_OS is only used to work around local toolchain issues. |
| 67 | HOST_OS ?= $(shell uname) |
| 68 | ifeq ($(HOST_OS), MINGW32_NT-5.1) |
| 69 | # Explicitly set CC = gcc on MinGW, otherwise: "cc: command not found". |
| 70 | CC = gcc |
| 71 | endif |
| 72 | ifneq ($(HOST_OS), SunOS) |
Adam Kaufman | 064b1f2 | 2007-02-06 19:47:50 +0000 | [diff] [blame] | 73 | STRIP_ARGS = -s |
| 74 | endif |
Carl-Daniel Hailfinger | 33a65a0 | 2011-12-20 00:51:44 +0000 | [diff] [blame] | 75 | |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 76 | # Determine the destination OS. |
Carl-Daniel Hailfinger | 33a65a0 | 2011-12-20 00:51:44 +0000 | [diff] [blame] | 77 | # IMPORTANT: The following line must be placed before TARGET_OS is ever used |
| 78 | # (of course), but should come after any lines setting CC because the line |
| 79 | # below uses CC itself. |
| 80 | override TARGET_OS := $(strip $(shell LC_ALL=C $(CC) $(CPPFLAGS) -E os.h 2>/dev/null | grep -v '^\#' | grep '"' | cut -f 2 -d'"')) |
| 81 | |
| 82 | ifeq ($(TARGET_OS), Darwin) |
Stefan Reinauer | 2fea3f3 | 2010-01-21 20:26:30 +0000 | [diff] [blame] | 83 | CPPFLAGS += -I/opt/local/include -I/usr/local/include |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 84 | LDFLAGS += -L/opt/local/lib -L/usr/local/lib |
Stefan Reinauer | f79edb9 | 2009-01-26 01:23:31 +0000 | [diff] [blame] | 85 | endif |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 86 | |
Carl-Daniel Hailfinger | 33a65a0 | 2011-12-20 00:51:44 +0000 | [diff] [blame] | 87 | ifeq ($(TARGET_OS), FreeBSD) |
Stefan Reinauer | 2fea3f3 | 2010-01-21 20:26:30 +0000 | [diff] [blame] | 88 | CPPFLAGS += -I/usr/local/include |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 89 | LDFLAGS += -L/usr/local/lib |
| 90 | endif |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 91 | |
Carl-Daniel Hailfinger | 33a65a0 | 2011-12-20 00:51:44 +0000 | [diff] [blame] | 92 | ifeq ($(TARGET_OS), OpenBSD) |
Carl-Daniel Hailfinger | b63b067 | 2010-07-02 17:12:50 +0000 | [diff] [blame] | 93 | CPPFLAGS += -I/usr/local/include |
| 94 | LDFLAGS += -L/usr/local/lib |
| 95 | endif |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 96 | |
Carl-Daniel Hailfinger | 33a65a0 | 2011-12-20 00:51:44 +0000 | [diff] [blame] | 97 | ifeq ($(TARGET_OS), DOS) |
Carl-Daniel Hailfinger | ddbab71 | 2010-06-14 14:44:08 +0000 | [diff] [blame] | 98 | EXEC_SUFFIX := .exe |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 99 | CPPFLAGS += -I../libgetopt |
Carl-Daniel Hailfinger | 33a65a0 | 2011-12-20 00:51:44 +0000 | [diff] [blame] | 100 | # DJGPP has odd uint*_t definitions which cause lots of format string warnings. |
Carl-Daniel Hailfinger | b7bce8a | 2012-08-14 21:36:11 +0000 | [diff] [blame] | 101 | CFLAGS += -Wno-format |
Carl-Daniel Hailfinger | 5bdf298 | 2010-06-14 12:42:05 +0000 | [diff] [blame] | 102 | # FIXME Check if we can achieve the same effect with -L../libgetopt -lgetopt |
| 103 | LIBS += ../libgetopt/libgetopt.a |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 104 | # Bus Pirate, Serprog and PonyProg are not supported under DOS (missing serial support). |
Carl-Daniel Hailfinger | 5d3fcb9 | 2010-06-14 18:40:59 +0000 | [diff] [blame] | 105 | ifeq ($(CONFIG_BUSPIRATE_SPI), yes) |
| 106 | UNSUPPORTED_FEATURES += CONFIG_BUSPIRATE_SPI=yes |
| 107 | else |
| 108 | override CONFIG_BUSPIRATE_SPI = no |
| 109 | endif |
| 110 | ifeq ($(CONFIG_SERPROG), yes) |
| 111 | UNSUPPORTED_FEATURES += CONFIG_SERPROG=yes |
| 112 | else |
| 113 | override CONFIG_SERPROG = no |
| 114 | endif |
Stefan Tauner | d94d25d | 2012-07-28 03:17:15 +0000 | [diff] [blame] | 115 | ifeq ($(CONFIG_PONY_SPI), yes) |
| 116 | UNSUPPORTED_FEATURES += CONFIG_PONY_SPI=yes |
| 117 | else |
| 118 | override CONFIG_PONY_SPI = no |
| 119 | endif |
Carl-Daniel Hailfinger | 5d3fcb9 | 2010-06-14 18:40:59 +0000 | [diff] [blame] | 120 | # Dediprog and FT2232 are not supported under DOS (missing USB support). |
| 121 | ifeq ($(CONFIG_DEDIPROG), yes) |
| 122 | UNSUPPORTED_FEATURES += CONFIG_DEDIPROG=yes |
| 123 | else |
| 124 | override CONFIG_DEDIPROG = no |
| 125 | endif |
| 126 | ifeq ($(CONFIG_FT2232_SPI), yes) |
| 127 | UNSUPPORTED_FEATURES += CONFIG_FT2232_SPI=yes |
| 128 | else |
| 129 | override CONFIG_FT2232_SPI = no |
| 130 | endif |
Carl-Daniel Hailfinger | 50415d2 | 2010-03-21 14:54:57 +0000 | [diff] [blame] | 131 | endif |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 132 | |
Carl-Daniel Hailfinger | 33a65a0 | 2011-12-20 00:51:44 +0000 | [diff] [blame] | 133 | # FIXME: Should we check for Cygwin/MSVC as well? |
| 134 | ifeq ($(TARGET_OS), MinGW) |
| 135 | EXEC_SUFFIX := .exe |
Uwe Hermann | d5e85d6 | 2011-07-03 19:44:12 +0000 | [diff] [blame] | 136 | # MinGW doesn't have the ffs() function, but we can use gcc's __builtin_ffs(). |
Carl-Daniel Hailfinger | a8da224 | 2012-08-15 23:06:32 +0000 | [diff] [blame] | 137 | FLASHROM_CFLAGS += -Dffs=__builtin_ffs |
Uwe Hermann | d5e85d6 | 2011-07-03 19:44:12 +0000 | [diff] [blame] | 138 | # libusb-win32/libftdi stuff is usually installed in /usr/local. |
| 139 | CPPFLAGS += -I/usr/local/include |
| 140 | LDFLAGS += -L/usr/local/lib |
| 141 | # Serprog is not supported under Windows/MinGW (missing sockets support). |
| 142 | ifeq ($(CONFIG_SERPROG), yes) |
| 143 | UNSUPPORTED_FEATURES += CONFIG_SERPROG=yes |
| 144 | else |
| 145 | override CONFIG_SERPROG = no |
| 146 | endif |
| 147 | # For now we disable all PCI-based programmers on Windows/MinGW (no libpci). |
| 148 | ifeq ($(CONFIG_INTERNAL), yes) |
| 149 | UNSUPPORTED_FEATURES += CONFIG_INTERNAL=yes |
| 150 | else |
| 151 | override CONFIG_INTERNAL = no |
| 152 | endif |
| 153 | ifeq ($(CONFIG_RAYER_SPI), yes) |
| 154 | UNSUPPORTED_FEATURES += CONFIG_RAYER_SPI=yes |
| 155 | else |
| 156 | override CONFIG_RAYER_SPI = no |
| 157 | endif |
| 158 | ifeq ($(CONFIG_NIC3COM), yes) |
| 159 | UNSUPPORTED_FEATURES += CONFIG_NIC3COM=yes |
| 160 | else |
| 161 | override CONFIG_NIC3COM = no |
| 162 | endif |
| 163 | ifeq ($(CONFIG_GFXNVIDIA), yes) |
| 164 | UNSUPPORTED_FEATURES += CONFIG_GFXNVIDIA=yes |
| 165 | else |
| 166 | override CONFIG_GFXNVIDIA = no |
| 167 | endif |
| 168 | ifeq ($(CONFIG_SATASII), yes) |
| 169 | UNSUPPORTED_FEATURES += CONFIG_SATASII=yes |
| 170 | else |
| 171 | override CONFIG_SATASII = no |
| 172 | endif |
| 173 | ifeq ($(CONFIG_ATAHPT), yes) |
| 174 | UNSUPPORTED_FEATURES += CONFIG_ATAHPT=yes |
| 175 | else |
| 176 | override CONFIG_ATAHPT = no |
| 177 | endif |
| 178 | ifeq ($(CONFIG_DRKAISER), yes) |
| 179 | UNSUPPORTED_FEATURES += CONFIG_DRKAISER=yes |
| 180 | else |
| 181 | override CONFIG_DRKAISER = no |
| 182 | endif |
| 183 | ifeq ($(CONFIG_NICREALTEK), yes) |
| 184 | UNSUPPORTED_FEATURES += CONFIG_NICREALTEK=yes |
| 185 | else |
| 186 | override CONFIG_NICREALTEK = no |
| 187 | endif |
| 188 | ifeq ($(CONFIG_NICNATSEMI), yes) |
| 189 | UNSUPPORTED_FEATURES += CONFIG_NICNATSEMI=yes |
| 190 | else |
| 191 | override CONFIG_NICNATSEMI = no |
| 192 | endif |
| 193 | ifeq ($(CONFIG_NICINTEL), yes) |
| 194 | UNSUPPORTED_FEATURES += CONFIG_NICINTEL=yes |
| 195 | else |
| 196 | override CONFIG_NICINTEL = no |
| 197 | endif |
| 198 | ifeq ($(CONFIG_NICINTEL_SPI), yes) |
| 199 | UNSUPPORTED_FEATURES += CONFIG_NICINTEL_SPI=yes |
| 200 | else |
| 201 | override CONFIG_NICINTEL_SPI = no |
| 202 | endif |
| 203 | ifeq ($(CONFIG_OGP_SPI), yes) |
| 204 | UNSUPPORTED_FEATURES += CONFIG_OGP_SPI=yes |
| 205 | else |
| 206 | override CONFIG_OGP_SPI = no |
| 207 | endif |
| 208 | ifeq ($(CONFIG_SATAMV), yes) |
| 209 | UNSUPPORTED_FEATURES += CONFIG_SATAMV=yes |
| 210 | else |
| 211 | override CONFIG_SATAMV = no |
| 212 | endif |
| 213 | endif |
| 214 | |
Carl-Daniel Hailfinger | 33a65a0 | 2011-12-20 00:51:44 +0000 | [diff] [blame] | 215 | ifeq ($(TARGET_OS), libpayload) |
Carl-Daniel Hailfinger | a8da224 | 2012-08-15 23:06:32 +0000 | [diff] [blame] | 216 | FLASHROM_CFLAGS += -DSTANDALONE |
Patrick Georgi | 97bc95c | 2011-03-08 07:17:44 +0000 | [diff] [blame] | 217 | ifeq ($(CONFIG_DUMMY), yes) |
| 218 | UNSUPPORTED_FEATURES += CONFIG_DUMMY=yes |
| 219 | else |
| 220 | override CONFIG_DUMMY = no |
| 221 | endif |
| 222 | ifeq ($(CONFIG_BUSPIRATE_SPI), yes) |
| 223 | UNSUPPORTED_FEATURES += CONFIG_BUSPIRATE_SPI=yes |
| 224 | else |
| 225 | override CONFIG_BUSPIRATE_SPI = no |
| 226 | endif |
| 227 | ifeq ($(CONFIG_SERPROG), yes) |
| 228 | UNSUPPORTED_FEATURES += CONFIG_SERPROG=yes |
| 229 | else |
| 230 | override CONFIG_SERPROG = no |
| 231 | endif |
| 232 | # Dediprog and FT2232 are not supported with libpayload (missing libusb support) |
| 233 | ifeq ($(CONFIG_DEDIPROG), yes) |
| 234 | UNSUPPORTED_FEATURES += CONFIG_DEDIPROG=yes |
| 235 | else |
| 236 | override CONFIG_DEDIPROG = no |
| 237 | endif |
| 238 | ifeq ($(CONFIG_FT2232_SPI), yes) |
| 239 | UNSUPPORTED_FEATURES += CONFIG_FT2232_SPI=yes |
| 240 | else |
| 241 | override CONFIG_FT2232_SPI = no |
| 242 | endif |
| 243 | endif |
| 244 | |
Carl-Daniel Hailfinger | 8541d23 | 2012-02-16 21:00:27 +0000 | [diff] [blame] | 245 | ifneq ($(TARGET_OS), Linux) |
| 246 | ifeq ($(CONFIG_LINUX_SPI), yes) |
| 247 | UNSUPPORTED_FEATURES += CONFIG_LINUX_SPI=yes |
| 248 | else |
| 249 | override CONFIG_LINUX_SPI = no |
| 250 | endif |
| 251 | endif |
| 252 | |
Uwe Hermann | 44ffd58 | 2011-08-20 14:16:00 +0000 | [diff] [blame] | 253 | # Determine the destination processor architecture. |
| 254 | # IMPORTANT: The following line must be placed before ARCH is ever used |
| 255 | # (of course), but should come after any lines setting CC because the line |
Carl-Daniel Hailfinger | 33a65a0 | 2011-12-20 00:51:44 +0000 | [diff] [blame] | 256 | # below uses CC itself. |
| 257 | override ARCH := $(strip $(shell LC_ALL=C $(CC) $(CPPFLAGS) -E arch.h 2>/dev/null | grep -v '^\#' | grep '"' | cut -f 2 -d'"')) |
Uwe Hermann | 44ffd58 | 2011-08-20 14:16:00 +0000 | [diff] [blame] | 258 | |
David Hendricks | b286da7 | 2012-02-13 00:35:35 +0000 | [diff] [blame] | 259 | # PCI port I/O support is unimplemented on PPC/MIPS and unavailable on ARM. |
| 260 | # Right now this means the drivers below only work on x86. |
| 261 | ifneq ($(ARCH), x86) |
Uwe Hermann | 21b10c6 | 2011-07-29 12:13:01 +0000 | [diff] [blame] | 262 | ifeq ($(CONFIG_NIC3COM), yes) |
| 263 | UNSUPPORTED_FEATURES += CONFIG_NIC3COM=yes |
| 264 | else |
| 265 | override CONFIG_NIC3COM = no |
| 266 | endif |
| 267 | ifeq ($(CONFIG_NICREALTEK), yes) |
| 268 | UNSUPPORTED_FEATURES += CONFIG_NICREALTEK=yes |
| 269 | else |
| 270 | override CONFIG_NICREALTEK = no |
| 271 | endif |
| 272 | ifeq ($(CONFIG_NICNATSEMI), yes) |
| 273 | UNSUPPORTED_FEATURES += CONFIG_NICNATSEMI=yes |
| 274 | else |
| 275 | override CONFIG_NICNATSEMI = no |
| 276 | endif |
| 277 | ifeq ($(CONFIG_RAYER_SPI), yes) |
| 278 | UNSUPPORTED_FEATURES += CONFIG_RAYER_SPI=yes |
| 279 | else |
| 280 | override CONFIG_RAYER_SPI = no |
| 281 | endif |
| 282 | ifeq ($(CONFIG_ATAHPT), yes) |
| 283 | UNSUPPORTED_FEATURES += CONFIG_ATAHPT=yes |
| 284 | else |
| 285 | override CONFIG_ATAHPT = no |
| 286 | endif |
| 287 | ifeq ($(CONFIG_SATAMV), yes) |
| 288 | UNSUPPORTED_FEATURES += CONFIG_SATAMV=yes |
| 289 | else |
| 290 | override CONFIG_SATAMV = no |
| 291 | endif |
| 292 | endif |
| 293 | |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 294 | ############################################################################### |
| 295 | # Flash chip drivers and bus support infrastructure. |
| 296 | |
Carl-Daniel Hailfinger | 9188240 | 2010-12-05 16:33:59 +0000 | [diff] [blame] | 297 | CHIP_OBJS = jedec.o stm50flw0x0x.o w39.o w29ee011.o \ |
Sean Nelson | 35727f7 | 2010-01-28 23:55:12 +0000 | [diff] [blame] | 298 | sst28sf040.o m29f400bt.o 82802ab.o pm49fl00x.o \ |
Stefan Tauner | 6ee37e2 | 2012-12-29 15:03:51 +0000 | [diff] [blame] | 299 | sst49lfxxxc.o sst_fwhub.o flashchips.o spi.o spi25.o spi25_statusreg.o \ |
| 300 | opaque.o sfdp.o en29lv640b.o |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 301 | |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 302 | ############################################################################### |
| 303 | # Library code. |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 304 | |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 305 | LIB_OBJS = layout.o flashrom.o udelay.o programmer.o |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 306 | |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 307 | ############################################################################### |
| 308 | # Frontend related stuff. |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 309 | |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 310 | CLI_OBJS = cli_classic.o cli_output.o print.o |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 311 | |
Carl-Daniel Hailfinger | 9e67585 | 2009-05-04 12:29:59 +0000 | [diff] [blame] | 312 | # Set the flashrom version string from the highest revision number |
| 313 | # of the checked out flashrom files. |
Carl-Daniel Hailfinger | a23041c | 2009-06-12 14:49:10 +0000 | [diff] [blame] | 314 | # Note to packagers: Any tree exported with "make export" or "make tarball" |
| 315 | # will not require subversion. The downloadable snapshots are already exported. |
Carl-Daniel Hailfinger | 8841d3e | 2010-05-15 15:04:37 +0000 | [diff] [blame] | 316 | SVNVERSION := $(shell LC_ALL=C svnversion -cn . 2>/dev/null | sed -e "s/.*://" -e "s/\([0-9]*\).*/\1/" | grep "[0-9]" || LC_ALL=C svn info . 2>/dev/null | awk '/^Revision:/ {print $$2 }' | grep "[0-9]" || LC_ALL=C git svn info . 2>/dev/null | awk '/^Revision:/ {print $$2 }' | grep "[0-9]" || echo unknown) |
Carl-Daniel Hailfinger | a23041c | 2009-06-12 14:49:10 +0000 | [diff] [blame] | 317 | |
Carl-Daniel Hailfinger | a583853 | 2012-08-08 00:13:10 +0000 | [diff] [blame] | 318 | RELEASE := 0.9.6.1 |
Carl-Daniel Hailfinger | 48e5e09 | 2009-08-31 16:25:08 +0000 | [diff] [blame] | 319 | VERSION := $(RELEASE)-r$(SVNVERSION) |
| 320 | RELEASENAME ?= $(VERSION) |
Carl-Daniel Hailfinger | a23041c | 2009-06-12 14:49:10 +0000 | [diff] [blame] | 321 | |
| 322 | SVNDEF := -D'FLASHROM_VERSION="$(VERSION)"' |
Bernhard Walle | 201bde3 | 2008-01-21 15:24:22 +0000 | [diff] [blame] | 323 | |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 324 | # Always enable internal/onboard support for now. |
| 325 | CONFIG_INTERNAL ?= yes |
| 326 | |
Carl-Daniel Hailfinger | 6be7411 | 2009-08-12 16:17:41 +0000 | [diff] [blame] | 327 | # Always enable serprog for now. Needs to be disabled on Windows. |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 328 | CONFIG_SERPROG ?= yes |
| 329 | |
Carl-Daniel Hailfinger | e7fdd6e | 2010-07-21 10:26:01 +0000 | [diff] [blame] | 330 | # RayeR SPIPGM hardware support |
| 331 | CONFIG_RAYER_SPI ?= yes |
| 332 | |
Virgil-Adrian Teaca | da7c545 | 2012-04-30 23:11:06 +0000 | [diff] [blame] | 333 | # PonyProg2000 SPI hardware support |
| 334 | CONFIG_PONY_SPI ?= yes |
| 335 | |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 336 | # Always enable 3Com NICs for now. |
| 337 | CONFIG_NIC3COM ?= yes |
| 338 | |
Carl-Daniel Hailfinger | bf3af29 | 2010-07-29 14:41:46 +0000 | [diff] [blame] | 339 | # Enable NVIDIA graphics cards. Note: write and erase do not work properly. |
| 340 | CONFIG_GFXNVIDIA ?= yes |
Uwe Hermann | 2bc98f6 | 2009-09-30 18:29:55 +0000 | [diff] [blame] | 341 | |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 342 | # Always enable SiI SATA controllers for now. |
| 343 | CONFIG_SATASII ?= yes |
| 344 | |
Uwe Hermann | ddd5c9e | 2010-02-21 21:17:00 +0000 | [diff] [blame] | 345 | # Highpoint (HPT) ATA/RAID controller support. |
| 346 | # IMPORTANT: This code is not yet working! |
| 347 | CONFIG_ATAHPT ?= no |
| 348 | |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 349 | # Always enable FT2232 SPI dongles for now. |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 350 | CONFIG_FT2232_SPI ?= yes |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 351 | |
| 352 | # Always enable dummy tracing for now. |
| 353 | CONFIG_DUMMY ?= yes |
| 354 | |
| 355 | # Always enable Dr. Kaiser for now. |
| 356 | CONFIG_DRKAISER ?= yes |
Carl-Daniel Hailfinger | 6be7411 | 2009-08-12 16:17:41 +0000 | [diff] [blame] | 357 | |
Joerg Fischer | 5665ef3 | 2010-05-21 21:54:07 +0000 | [diff] [blame] | 358 | # Always enable Realtek NICs for now. |
| 359 | CONFIG_NICREALTEK ?= yes |
| 360 | |
Andrew Morgan | c29c2e7 | 2010-06-07 22:37:54 +0000 | [diff] [blame] | 361 | # Disable National Semiconductor NICs until support is complete and tested. |
| 362 | CONFIG_NICNATSEMI ?= no |
| 363 | |
Carl-Daniel Hailfinger | b713d2e | 2011-05-08 00:24:18 +0000 | [diff] [blame] | 364 | # Always enable Intel NICs for now. |
| 365 | CONFIG_NICINTEL ?= yes |
| 366 | |
Idwer Vollering | 004f4b7 | 2010-09-03 18:21:21 +0000 | [diff] [blame] | 367 | # Always enable SPI on Intel NICs for now. |
| 368 | CONFIG_NICINTEL_SPI ?= yes |
| 369 | |
Mark Marshall | 90021f2 | 2010-12-03 14:48:11 +0000 | [diff] [blame] | 370 | # Always enable SPI on OGP cards for now. |
| 371 | CONFIG_OGP_SPI ?= yes |
| 372 | |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 373 | # Always enable Bus Pirate SPI for now. |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 374 | CONFIG_BUSPIRATE_SPI ?= yes |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 375 | |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 376 | # Disable Dediprog SF100 until support is complete and tested. |
| 377 | CONFIG_DEDIPROG ?= no |
| 378 | |
Carl-Daniel Hailfinger | 9a1105c | 2011-02-04 21:37:59 +0000 | [diff] [blame] | 379 | # Always enable Marvell SATA controllers for now. |
| 380 | CONFIG_SATAMV ?= yes |
| 381 | |
Carl-Daniel Hailfinger | 8541d23 | 2012-02-16 21:00:27 +0000 | [diff] [blame] | 382 | # Enable Linux spidev interface by default. We disable it on non-Linux targets. |
| 383 | CONFIG_LINUX_SPI ?= yes |
| 384 | |
Carl-Daniel Hailfinger | 6161ff1 | 2009-11-16 21:22:24 +0000 | [diff] [blame] | 385 | # Disable wiki printing by default. It is only useful if you have wiki access. |
Uwe Hermann | 2db77a0 | 2010-06-04 17:07:39 +0000 | [diff] [blame] | 386 | CONFIG_PRINT_WIKI ?= no |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 387 | |
Carl-Daniel Hailfinger | 9e3a6c4 | 2010-10-08 12:40:09 +0000 | [diff] [blame] | 388 | # Bitbanging SPI infrastructure, default off unless needed. |
| 389 | ifeq ($(CONFIG_RAYER_SPI), yes) |
| 390 | override CONFIG_BITBANG_SPI = yes |
| 391 | else |
Virgil-Adrian Teaca | da7c545 | 2012-04-30 23:11:06 +0000 | [diff] [blame] | 392 | ifeq ($(CONFIG_PONY_SPI), yes) |
| 393 | override CONFIG_BITBANG_SPI = yes |
| 394 | else |
Carl-Daniel Hailfinger | 9e3a6c4 | 2010-10-08 12:40:09 +0000 | [diff] [blame] | 395 | ifeq ($(CONFIG_INTERNAL), yes) |
| 396 | override CONFIG_BITBANG_SPI = yes |
| 397 | else |
| 398 | ifeq ($(CONFIG_NICINTEL_SPI), yes) |
| 399 | override CONFIG_BITBANG_SPI = yes |
| 400 | else |
Mark Marshall | 90021f2 | 2010-12-03 14:48:11 +0000 | [diff] [blame] | 401 | ifeq ($(CONFIG_OGP_SPI), yes) |
| 402 | override CONFIG_BITBANG_SPI = yes |
| 403 | else |
Carl-Daniel Hailfinger | 9e3a6c4 | 2010-10-08 12:40:09 +0000 | [diff] [blame] | 404 | CONFIG_BITBANG_SPI ?= no |
| 405 | endif |
| 406 | endif |
| 407 | endif |
Mark Marshall | 90021f2 | 2010-12-03 14:48:11 +0000 | [diff] [blame] | 408 | endif |
Virgil-Adrian Teaca | da7c545 | 2012-04-30 23:11:06 +0000 | [diff] [blame] | 409 | endif |
Carl-Daniel Hailfinger | 9e3a6c4 | 2010-10-08 12:40:09 +0000 | [diff] [blame] | 410 | |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 411 | ############################################################################### |
| 412 | # Programmer drivers and programmer support infrastructure. |
| 413 | |
Stefan Tauner | fd0d413 | 2012-09-25 21:24:55 +0000 | [diff] [blame] | 414 | FEATURE_CFLAGS += -D'CONFIG_DEFAULT_PROGRAMMER=$(CONFIG_DEFAULT_PROGRAMMER)' |
| 415 | |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 416 | ifeq ($(CONFIG_INTERNAL), yes) |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 417 | FEATURE_CFLAGS += -D'CONFIG_INTERNAL=1' |
Carl-Daniel Hailfinger | b5b161b | 2010-06-04 19:05:39 +0000 | [diff] [blame] | 418 | PROGRAMMER_OBJS += processor_enable.o chipset_enable.o board_enable.o cbtable.o dmi.o internal.o |
Carl-Daniel Hailfinger | 33a65a0 | 2011-12-20 00:51:44 +0000 | [diff] [blame] | 419 | ifeq ($(ARCH), x86) |
Stefan Tauner | 1e14639 | 2011-09-15 23:52:55 +0000 | [diff] [blame] | 420 | PROGRAMMER_OBJS += it87spi.o it85spi.o sb600spi.o wbsio_spi.o mcp6x_spi.o |
| 421 | PROGRAMMER_OBJS += ichspi.o ich_descriptors.o |
Carl-Daniel Hailfinger | 91199a1 | 2011-07-07 06:59:18 +0000 | [diff] [blame] | 422 | else |
| 423 | endif |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 424 | NEED_PCI := yes |
| 425 | endif |
| 426 | |
Carl-Daniel Hailfinger | 6be7411 | 2009-08-12 16:17:41 +0000 | [diff] [blame] | 427 | ifeq ($(CONFIG_SERPROG), yes) |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 428 | FEATURE_CFLAGS += -D'CONFIG_SERPROG=1' |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 429 | PROGRAMMER_OBJS += serprog.o |
Carl-Daniel Hailfinger | 5bdf298 | 2010-06-14 12:42:05 +0000 | [diff] [blame] | 430 | NEED_SERIAL := yes |
| 431 | NEED_NET := yes |
Carl-Daniel Hailfinger | 6be7411 | 2009-08-12 16:17:41 +0000 | [diff] [blame] | 432 | endif |
| 433 | |
Carl-Daniel Hailfinger | e7fdd6e | 2010-07-21 10:26:01 +0000 | [diff] [blame] | 434 | ifeq ($(CONFIG_RAYER_SPI), yes) |
| 435 | FEATURE_CFLAGS += -D'CONFIG_RAYER_SPI=1' |
| 436 | PROGRAMMER_OBJS += rayer_spi.o |
| 437 | # Actually, NEED_PCI is wrong. NEED_IOPORT_ACCESS would be more correct. |
| 438 | NEED_PCI := yes |
| 439 | endif |
| 440 | |
Virgil-Adrian Teaca | da7c545 | 2012-04-30 23:11:06 +0000 | [diff] [blame] | 441 | ifeq ($(CONFIG_PONY_SPI), yes) |
| 442 | FEATURE_CFLAGS += -D'CONFIG_PONY_SPI=1' |
| 443 | PROGRAMMER_OBJS += pony_spi.o |
| 444 | NEED_SERIAL := yes |
| 445 | endif |
| 446 | |
Carl-Daniel Hailfinger | 547872b | 2009-09-28 13:15:16 +0000 | [diff] [blame] | 447 | ifeq ($(CONFIG_BITBANG_SPI), yes) |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 448 | FEATURE_CFLAGS += -D'CONFIG_BITBANG_SPI=1' |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 449 | PROGRAMMER_OBJS += bitbang_spi.o |
Carl-Daniel Hailfinger | 547872b | 2009-09-28 13:15:16 +0000 | [diff] [blame] | 450 | endif |
| 451 | |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 452 | ifeq ($(CONFIG_NIC3COM), yes) |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 453 | FEATURE_CFLAGS += -D'CONFIG_NIC3COM=1' |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 454 | PROGRAMMER_OBJS += nic3com.o |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 455 | NEED_PCI := yes |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 456 | endif |
Carl-Daniel Hailfinger | 6be7411 | 2009-08-12 16:17:41 +0000 | [diff] [blame] | 457 | |
Uwe Hermann | 2bc98f6 | 2009-09-30 18:29:55 +0000 | [diff] [blame] | 458 | ifeq ($(CONFIG_GFXNVIDIA), yes) |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 459 | FEATURE_CFLAGS += -D'CONFIG_GFXNVIDIA=1' |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 460 | PROGRAMMER_OBJS += gfxnvidia.o |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 461 | NEED_PCI := yes |
Uwe Hermann | 2bc98f6 | 2009-09-30 18:29:55 +0000 | [diff] [blame] | 462 | endif |
| 463 | |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 464 | ifeq ($(CONFIG_SATASII), yes) |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 465 | FEATURE_CFLAGS += -D'CONFIG_SATASII=1' |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 466 | PROGRAMMER_OBJS += satasii.o |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 467 | NEED_PCI := yes |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 468 | endif |
| 469 | |
Uwe Hermann | ddd5c9e | 2010-02-21 21:17:00 +0000 | [diff] [blame] | 470 | ifeq ($(CONFIG_ATAHPT), yes) |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 471 | FEATURE_CFLAGS += -D'CONFIG_ATAHPT=1' |
Uwe Hermann | ddd5c9e | 2010-02-21 21:17:00 +0000 | [diff] [blame] | 472 | PROGRAMMER_OBJS += atahpt.o |
| 473 | NEED_PCI := yes |
| 474 | endif |
| 475 | |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 476 | ifeq ($(CONFIG_FT2232_SPI), yes) |
Carl-Daniel Hailfinger | c1f00c5 | 2010-01-09 14:18:01 +0000 | [diff] [blame] | 477 | FTDILIBS := $(shell pkg-config --libs libftdi 2>/dev/null || printf "%s" "-lftdi -lusb") |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 478 | # This is a totally ugly hack. |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 479 | FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "FTDISUPPORT := yes" .features && printf "%s" "-D'CONFIG_FT2232_SPI=1'") |
Ilya A. Volynets-Evenbakh | 2c714ab | 2012-09-26 00:47:09 +0000 | [diff] [blame] | 480 | FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "FT232H := yes" .features && printf "%s" "-D'HAVE_FT232H=1'") |
Jörg Mayer | 8776db2 | 2009-11-16 14:05:13 +0000 | [diff] [blame] | 481 | FEATURE_LIBS += $(shell LC_ALL=C grep -q "FTDISUPPORT := yes" .features && printf "%s" "$(FTDILIBS)") |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 482 | PROGRAMMER_OBJS += ft2232_spi.o |
Carl-Daniel Hailfinger | e7a39bf | 2012-11-20 21:06:16 +0000 | [diff] [blame] | 483 | # We can't set NEED_USB here because that would transform libftdi auto-enabling |
| 484 | # into a hard requirement for libusb, defeating the purpose of auto-enabling. |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 485 | endif |
| 486 | |
| 487 | ifeq ($(CONFIG_DUMMY), yes) |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 488 | FEATURE_CFLAGS += -D'CONFIG_DUMMY=1' |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 489 | PROGRAMMER_OBJS += dummyflasher.o |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 490 | endif |
| 491 | |
| 492 | ifeq ($(CONFIG_DRKAISER), yes) |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 493 | FEATURE_CFLAGS += -D'CONFIG_DRKAISER=1' |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 494 | PROGRAMMER_OBJS += drkaiser.o |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 495 | NEED_PCI := yes |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 496 | endif |
Carl-Daniel Hailfinger | 6be7411 | 2009-08-12 16:17:41 +0000 | [diff] [blame] | 497 | |
Joerg Fischer | 5665ef3 | 2010-05-21 21:54:07 +0000 | [diff] [blame] | 498 | ifeq ($(CONFIG_NICREALTEK), yes) |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 499 | FEATURE_CFLAGS += -D'CONFIG_NICREALTEK=1' |
Joerg Fischer | 5665ef3 | 2010-05-21 21:54:07 +0000 | [diff] [blame] | 500 | PROGRAMMER_OBJS += nicrealtek.o |
| 501 | NEED_PCI := yes |
| 502 | endif |
| 503 | |
Andrew Morgan | c29c2e7 | 2010-06-07 22:37:54 +0000 | [diff] [blame] | 504 | ifeq ($(CONFIG_NICNATSEMI), yes) |
| 505 | FEATURE_CFLAGS += -D'CONFIG_NICNATSEMI=1' |
| 506 | PROGRAMMER_OBJS += nicnatsemi.o |
| 507 | NEED_PCI := yes |
| 508 | endif |
| 509 | |
Carl-Daniel Hailfinger | b713d2e | 2011-05-08 00:24:18 +0000 | [diff] [blame] | 510 | ifeq ($(CONFIG_NICINTEL), yes) |
| 511 | FEATURE_CFLAGS += -D'CONFIG_NICINTEL=1' |
| 512 | PROGRAMMER_OBJS += nicintel.o |
| 513 | NEED_PCI := yes |
| 514 | endif |
| 515 | |
Idwer Vollering | 004f4b7 | 2010-09-03 18:21:21 +0000 | [diff] [blame] | 516 | ifeq ($(CONFIG_NICINTEL_SPI), yes) |
| 517 | FEATURE_CFLAGS += -D'CONFIG_NICINTEL_SPI=1' |
| 518 | PROGRAMMER_OBJS += nicintel_spi.o |
| 519 | NEED_PCI := yes |
| 520 | endif |
| 521 | |
Mark Marshall | 90021f2 | 2010-12-03 14:48:11 +0000 | [diff] [blame] | 522 | ifeq ($(CONFIG_OGP_SPI), yes) |
| 523 | FEATURE_CFLAGS += -D'CONFIG_OGP_SPI=1' |
| 524 | PROGRAMMER_OBJS += ogp_spi.o |
| 525 | NEED_PCI := yes |
| 526 | endif |
| 527 | |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 528 | ifeq ($(CONFIG_BUSPIRATE_SPI), yes) |
| 529 | FEATURE_CFLAGS += -D'CONFIG_BUSPIRATE_SPI=1' |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 530 | PROGRAMMER_OBJS += buspirate_spi.o |
Carl-Daniel Hailfinger | 5bdf298 | 2010-06-14 12:42:05 +0000 | [diff] [blame] | 531 | NEED_SERIAL := yes |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 532 | endif |
| 533 | |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 534 | ifeq ($(CONFIG_DEDIPROG), yes) |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 535 | FEATURE_CFLAGS += -D'CONFIG_DEDIPROG=1' |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 536 | PROGRAMMER_OBJS += dediprog.o |
Carl-Daniel Hailfinger | e7a39bf | 2012-11-20 21:06:16 +0000 | [diff] [blame] | 537 | NEED_USB := yes |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 538 | endif |
| 539 | |
Carl-Daniel Hailfinger | 9a1105c | 2011-02-04 21:37:59 +0000 | [diff] [blame] | 540 | ifeq ($(CONFIG_SATAMV), yes) |
| 541 | FEATURE_CFLAGS += -D'CONFIG_SATAMV=1' |
| 542 | PROGRAMMER_OBJS += satamv.o |
| 543 | NEED_PCI := yes |
| 544 | endif |
| 545 | |
Carl-Daniel Hailfinger | 8541d23 | 2012-02-16 21:00:27 +0000 | [diff] [blame] | 546 | ifeq ($(CONFIG_LINUX_SPI), yes) |
Stefan Tauner | 8868db3 | 2012-03-13 00:18:19 +0000 | [diff] [blame] | 547 | # This is a totally ugly hack. |
| 548 | FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "LINUX_SPI_SUPPORT := yes" .features && printf "%s" "-D'CONFIG_LINUX_SPI=1'") |
Carl-Daniel Hailfinger | 8541d23 | 2012-02-16 21:00:27 +0000 | [diff] [blame] | 549 | PROGRAMMER_OBJS += linux_spi.o |
| 550 | endif |
| 551 | |
Carl-Daniel Hailfinger | 5bdf298 | 2010-06-14 12:42:05 +0000 | [diff] [blame] | 552 | ifeq ($(NEED_SERIAL), yes) |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 553 | LIB_OBJS += serial.o |
Carl-Daniel Hailfinger | 5bdf298 | 2010-06-14 12:42:05 +0000 | [diff] [blame] | 554 | endif |
| 555 | |
| 556 | ifeq ($(NEED_NET), yes) |
Carl-Daniel Hailfinger | 33a65a0 | 2011-12-20 00:51:44 +0000 | [diff] [blame] | 557 | ifeq ($(TARGET_OS), SunOS) |
Carl-Daniel Hailfinger | 5bdf298 | 2010-06-14 12:42:05 +0000 | [diff] [blame] | 558 | LIBS += -lsocket |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 559 | endif |
Carl-Daniel Hailfinger | e51ea10 | 2009-11-23 19:20:11 +0000 | [diff] [blame] | 560 | endif |
| 561 | |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 562 | ifeq ($(NEED_PCI), yes) |
Carl-Daniel Hailfinger | 50415d2 | 2010-03-21 14:54:57 +0000 | [diff] [blame] | 563 | CHECK_LIBPCI = yes |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 564 | FEATURE_CFLAGS += -D'NEED_PCI=1' |
Carl-Daniel Hailfinger | fb0828f | 2010-02-12 19:35:25 +0000 | [diff] [blame] | 565 | PROGRAMMER_OBJS += pcidev.o physmap.o hwaccess.o |
Carl-Daniel Hailfinger | 33a65a0 | 2011-12-20 00:51:44 +0000 | [diff] [blame] | 566 | ifeq ($(TARGET_OS), NetBSD) |
Carl-Daniel Hailfinger | 460b282 | 2010-06-04 23:24:57 +0000 | [diff] [blame] | 567 | # The libpci we want is called libpciutils on NetBSD and needs NetBSD libpci. |
Carl-Daniel Hailfinger | e7a39bf | 2012-11-20 21:06:16 +0000 | [diff] [blame] | 568 | PCILIBS += -lpciutils -lpci |
Carl-Daniel Hailfinger | 460b282 | 2010-06-04 23:24:57 +0000 | [diff] [blame] | 569 | # For (i386|x86_64)_iopl(2). |
Carl-Daniel Hailfinger | e7a39bf | 2012-11-20 21:06:16 +0000 | [diff] [blame] | 570 | PCILIBS += -l$(shell uname -p) |
Carl-Daniel Hailfinger | 50415d2 | 2010-03-21 14:54:57 +0000 | [diff] [blame] | 571 | else |
Carl-Daniel Hailfinger | 33a65a0 | 2011-12-20 00:51:44 +0000 | [diff] [blame] | 572 | ifeq ($(TARGET_OS), DOS) |
Carl-Daniel Hailfinger | 50415d2 | 2010-03-21 14:54:57 +0000 | [diff] [blame] | 573 | # FIXME There needs to be a better way to do this |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 574 | CPPFLAGS += -I../libpci/include |
Carl-Daniel Hailfinger | e7a39bf | 2012-11-20 21:06:16 +0000 | [diff] [blame] | 575 | PCILIBS += ../libpci/lib/libpci.a |
Carl-Daniel Hailfinger | 50415d2 | 2010-03-21 14:54:57 +0000 | [diff] [blame] | 576 | else |
Carl-Daniel Hailfinger | e7a39bf | 2012-11-20 21:06:16 +0000 | [diff] [blame] | 577 | PCILIBS += -lpci |
Carl-Daniel Hailfinger | 33a65a0 | 2011-12-20 00:51:44 +0000 | [diff] [blame] | 578 | ifeq ($(TARGET_OS), OpenBSD) |
Carl-Daniel Hailfinger | b63b067 | 2010-07-02 17:12:50 +0000 | [diff] [blame] | 579 | # For (i386|amd64)_iopl(2). |
Carl-Daniel Hailfinger | e7a39bf | 2012-11-20 21:06:16 +0000 | [diff] [blame] | 580 | PCILIBS += -l$(shell uname -m) |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 581 | else |
| 582 | ifeq ($(TARGET_OS), Darwin) |
| 583 | # DirectHW framework can be found in the DirectHW library. |
Stefan Tauner | e34e3e8 | 2013-01-01 00:06:51 +0000 | [diff] [blame] | 584 | PCILIBS += -framework IOKit -framework DirectHW |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 585 | else |
| 586 | endif |
Carl-Daniel Hailfinger | b63b067 | 2010-07-02 17:12:50 +0000 | [diff] [blame] | 587 | endif |
Carl-Daniel Hailfinger | 50415d2 | 2010-03-21 14:54:57 +0000 | [diff] [blame] | 588 | endif |
Jonathan A. Kollasch | 3646c8f | 2010-01-08 21:18:08 +0000 | [diff] [blame] | 589 | endif |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 590 | endif |
| 591 | |
Carl-Daniel Hailfinger | e7a39bf | 2012-11-20 21:06:16 +0000 | [diff] [blame] | 592 | ifeq ($(NEED_USB), yes) |
| 593 | CHECK_LIBUSB0 = yes |
| 594 | FEATURE_CFLAGS += -D'NEED_USB=1' |
| 595 | USBLIBS := $(shell pkg-config --libs libusb 2>/dev/null || printf "%s" "-lusb") |
| 596 | endif |
| 597 | |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 598 | ifeq ($(CONFIG_PRINT_WIKI), yes) |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 599 | FEATURE_CFLAGS += -D'CONFIG_PRINT_WIKI=1' |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 600 | CLI_OBJS += print_wiki.o |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 601 | endif |
| 602 | |
Carl-Daniel Hailfinger | 132e2ec | 2010-03-27 16:36:40 +0000 | [diff] [blame] | 603 | FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "UTSNAME := yes" .features && printf "%s" "-D'HAVE_UTSNAME=1'") |
| 604 | |
Carl-Daniel Hailfinger | a472b8b | 2009-10-03 17:08:02 +0000 | [diff] [blame] | 605 | # We could use PULLED_IN_LIBS, but that would be ugly. |
| 606 | FEATURE_LIBS += $(shell LC_ALL=C grep -q "NEEDLIBZ := yes" .libdeps && printf "%s" "-lz") |
| 607 | |
Patrick Georgi | 97bc95c | 2011-03-08 07:17:44 +0000 | [diff] [blame] | 608 | LIBFLASHROM_OBJS = $(CHIP_OBJS) $(PROGRAMMER_OBJS) $(LIB_OBJS) |
Stefan Tauner | d94d25d | 2012-07-28 03:17:15 +0000 | [diff] [blame] | 609 | OBJS = $(CLI_OBJS) $(LIBFLASHROM_OBJS) |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 610 | |
Carl-Daniel Hailfinger | e7a39bf | 2012-11-20 21:06:16 +0000 | [diff] [blame] | 611 | all: hwlibs features $(PROGRAM)$(EXEC_SUFFIX) |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 612 | ifeq ($(ARCH), x86) |
| 613 | @+$(MAKE) -C util/ich_descriptors_tool/ TARGET_OS=$(TARGET_OS) EXEC_SUFFIX=$(EXEC_SUFFIX) |
| 614 | endif |
| 615 | |
Carl-Daniel Hailfinger | ddbab71 | 2010-06-14 14:44:08 +0000 | [diff] [blame] | 616 | $(PROGRAM)$(EXEC_SUFFIX): $(OBJS) |
Carl-Daniel Hailfinger | e7a39bf | 2012-11-20 21:06:16 +0000 | [diff] [blame] | 617 | $(CC) $(LDFLAGS) -o $(PROGRAM)$(EXEC_SUFFIX) $(OBJS) $(FEATURE_LIBS) $(LIBS) $(PCILIBS) $(USBLIBS) |
Ronald G. Minnich | 5e5f75e | 2002-01-29 18:21:41 +0000 | [diff] [blame] | 618 | |
Patrick Georgi | 97bc95c | 2011-03-08 07:17:44 +0000 | [diff] [blame] | 619 | libflashrom.a: $(LIBFLASHROM_OBJS) |
| 620 | $(AR) rcs $@ $^ |
| 621 | $(RANLIB) $@ |
| 622 | |
Carl-Daniel Hailfinger | 8ef7dce | 2009-07-10 20:19:48 +0000 | [diff] [blame] | 623 | # TAROPTIONS reduces information leakage from the packager's system. |
| 624 | # If other tar programs support command line arguments for setting uid/gid of |
| 625 | # stored files, they can be handled here as well. |
| 626 | TAROPTIONS = $(shell LC_ALL=C tar --version|grep -q GNU && echo "--owner=root --group=root") |
Carl-Daniel Hailfinger | b18ecbc | 2009-06-19 14:20:34 +0000 | [diff] [blame] | 627 | |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 628 | %.o: %.c .features |
Carl-Daniel Hailfinger | a8da224 | 2012-08-15 23:06:32 +0000 | [diff] [blame] | 629 | $(CC) -MMD $(CFLAGS) $(CPPFLAGS) $(FLASHROM_CFLAGS) $(FEATURE_CFLAGS) $(SVNDEF) -o $@ -c $< |
Clark Rawlins | 02016f7 | 2008-02-14 23:22:20 +0000 | [diff] [blame] | 630 | |
Carl-Daniel Hailfinger | a0020df | 2010-05-30 22:35:14 +0000 | [diff] [blame] | 631 | # Make sure to add all names of generated binaries here. |
| 632 | # This includes all frontends and libflashrom. |
Carl-Daniel Hailfinger | ddbab71 | 2010-06-14 14:44:08 +0000 | [diff] [blame] | 633 | # We don't use EXEC_SUFFIX here because we want to clean everything. |
Ronald G. Minnich | 5e5f75e | 2002-01-29 18:21:41 +0000 | [diff] [blame] | 634 | clean: |
Patrick Georgi | 97bc95c | 2011-03-08 07:17:44 +0000 | [diff] [blame] | 635 | rm -f $(PROGRAM) $(PROGRAM).exe libflashrom.a *.o *.d |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 636 | @+$(MAKE) -C util/ich_descriptors_tool/ clean |
Ronald G. Minnich | eaab50b | 2003-09-12 22:41:53 +0000 | [diff] [blame] | 637 | |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 638 | distclean: clean |
Stefan Reinauer | e2f0158 | 2010-06-07 11:08:07 +0000 | [diff] [blame] | 639 | rm -f .features .libdeps |
Christian Ruppert | db9d9f4 | 2009-05-14 14:17:07 +0000 | [diff] [blame] | 640 | |
Carl-Daniel Hailfinger | ddbab71 | 2010-06-14 14:44:08 +0000 | [diff] [blame] | 641 | strip: $(PROGRAM)$(EXEC_SUFFIX) |
| 642 | $(STRIP) $(STRIP_ARGS) $(PROGRAM)$(EXEC_SUFFIX) |
Ronald G. Minnich | eaab50b | 2003-09-12 22:41:53 +0000 | [diff] [blame] | 643 | |
Stefan Tauner | 5678708 | 2011-08-18 02:27:19 +0000 | [diff] [blame] | 644 | # to define test programs we use verbatim variables, which get exported |
| 645 | # to environment variables and are referenced with $$<varname> later |
| 646 | |
| 647 | define COMPILER_TEST |
| 648 | int main(int argc, char **argv) |
| 649 | { |
| 650 | (void) argc; |
| 651 | (void) argv; |
| 652 | return 0; |
| 653 | } |
| 654 | endef |
| 655 | export COMPILER_TEST |
| 656 | |
Carl-Daniel Hailfinger | 5d3fcb9 | 2010-06-14 18:40:59 +0000 | [diff] [blame] | 657 | compiler: featuresavailable |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 658 | @printf "Checking for a C compiler... " |
Stefan Tauner | 5678708 | 2011-08-18 02:27:19 +0000 | [diff] [blame] | 659 | @echo "$$COMPILER_TEST" > .test.c |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 660 | @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .test.c -o .test$(EXEC_SUFFIX) >/dev/null && \ |
Carl-Daniel Hailfinger | 4cb7a96 | 2009-06-16 09:31:51 +0000 | [diff] [blame] | 661 | echo "found." || ( echo "not found."; \ |
Carl-Daniel Hailfinger | ddbab71 | 2010-06-14 14:44:08 +0000 | [diff] [blame] | 662 | rm -f .test.c .test$(EXEC_SUFFIX); exit 1) |
| 663 | @rm -f .test.c .test$(EXEC_SUFFIX) |
Carl-Daniel Hailfinger | 33a65a0 | 2011-12-20 00:51:44 +0000 | [diff] [blame] | 664 | @printf "Target arch is " |
Carl-Daniel Hailfinger | 91199a1 | 2011-07-07 06:59:18 +0000 | [diff] [blame] | 665 | @# FreeBSD wc will output extraneous whitespace. |
Carl-Daniel Hailfinger | 33a65a0 | 2011-12-20 00:51:44 +0000 | [diff] [blame] | 666 | @echo $(ARCH)|wc -w|grep -q '^[[:blank:]]*1[[:blank:]]*$$' || \ |
Carl-Daniel Hailfinger | 91199a1 | 2011-07-07 06:59:18 +0000 | [diff] [blame] | 667 | ( echo "unknown. Aborting."; exit 1) |
| 668 | @printf "%s\n" '$(ARCH)' |
Carl-Daniel Hailfinger | 33a65a0 | 2011-12-20 00:51:44 +0000 | [diff] [blame] | 669 | @printf "Target OS is " |
| 670 | @# FreeBSD wc will output extraneous whitespace. |
| 671 | @echo $(TARGET_OS)|wc -w|grep -q '^[[:blank:]]*1[[:blank:]]*$$' || \ |
| 672 | ( echo "unknown. Aborting."; exit 1) |
| 673 | @printf "%s\n" '$(TARGET_OS)' |
Carl-Daniel Hailfinger | 4cb7a96 | 2009-06-16 09:31:51 +0000 | [diff] [blame] | 674 | |
Stefan Tauner | 5678708 | 2011-08-18 02:27:19 +0000 | [diff] [blame] | 675 | define LIBPCI_TEST |
| 676 | /* Avoid a failing test due to libpci header symbol shadowing breakage */ |
| 677 | #define index shadow_workaround_index |
| 678 | #include <pci/pci.h> |
| 679 | struct pci_access *pacc; |
| 680 | int main(int argc, char **argv) |
| 681 | { |
| 682 | (void) argc; |
| 683 | (void) argv; |
| 684 | pacc = pci_alloc(); |
| 685 | return 0; |
| 686 | } |
| 687 | endef |
| 688 | export LIBPCI_TEST |
| 689 | |
Carl-Daniel Hailfinger | e7a39bf | 2012-11-20 21:06:16 +0000 | [diff] [blame] | 690 | define LIBUSB0_TEST |
| 691 | #include <usb.h> |
| 692 | int main(int argc, char **argv) |
| 693 | { |
| 694 | (void) argc; |
| 695 | (void) argv; |
| 696 | usb_init(); |
| 697 | return 0; |
| 698 | } |
| 699 | endef |
| 700 | export LIBUSB0_TEST |
| 701 | |
| 702 | hwlibs: compiler |
| 703 | @printf "" > .libdeps |
Carl-Daniel Hailfinger | 50415d2 | 2010-03-21 14:54:57 +0000 | [diff] [blame] | 704 | ifeq ($(CHECK_LIBPCI), yes) |
Carl-Daniel Hailfinger | a472b8b | 2009-10-03 17:08:02 +0000 | [diff] [blame] | 705 | @printf "Checking for libpci headers... " |
Stefan Tauner | 5678708 | 2011-08-18 02:27:19 +0000 | [diff] [blame] | 706 | @echo "$$LIBPCI_TEST" > .test.c |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 707 | @$(CC) -c $(CPPFLAGS) $(CFLAGS) .test.c -o .test.o >/dev/null && \ |
Carl-Daniel Hailfinger | a472b8b | 2009-10-03 17:08:02 +0000 | [diff] [blame] | 708 | echo "found." || ( echo "not found."; echo; \ |
| 709 | echo "Please install libpci headers (package pciutils-devel)."; \ |
| 710 | echo "See README for more information."; echo; \ |
| 711 | rm -f .test.c .test.o; exit 1) |
Carl-Daniel Hailfinger | 9979eac | 2010-03-22 12:29:45 +0000 | [diff] [blame] | 712 | @printf "Checking if libpci is present and sufficient... " |
Carl-Daniel Hailfinger | 26148ae | 2012-11-29 22:22:04 +0000 | [diff] [blame] | 713 | @$(CC) $(LDFLAGS) .test.o -o .test$(EXEC_SUFFIX) $(LIBS) $(PCILIBS) >/dev/null && \ |
Carl-Daniel Hailfinger | a472b8b | 2009-10-03 17:08:02 +0000 | [diff] [blame] | 714 | echo "yes." || ( echo "no."; \ |
Carl-Daniel Hailfinger | 9979eac | 2010-03-22 12:29:45 +0000 | [diff] [blame] | 715 | printf "Checking if libz+libpci are present and sufficient..."; \ |
Carl-Daniel Hailfinger | 26148ae | 2012-11-29 22:22:04 +0000 | [diff] [blame] | 716 | $(CC) $(LDFLAGS) .test.o -o .test$(EXEC_SUFFIX) $(LIBS) $(PCILIBS) -lz >/dev/null && \ |
Carl-Daniel Hailfinger | a472b8b | 2009-10-03 17:08:02 +0000 | [diff] [blame] | 717 | ( echo "yes."; echo "NEEDLIBZ := yes" > .libdeps ) || ( echo "no."; echo; \ |
Carl-Daniel Hailfinger | 9979eac | 2010-03-22 12:29:45 +0000 | [diff] [blame] | 718 | echo "Please install libpci (package pciutils) and/or libz."; \ |
Carl-Daniel Hailfinger | a472b8b | 2009-10-03 17:08:02 +0000 | [diff] [blame] | 719 | echo "See README for more information."; echo; \ |
Carl-Daniel Hailfinger | ddbab71 | 2010-06-14 14:44:08 +0000 | [diff] [blame] | 720 | rm -f .test.c .test.o .test$(EXEC_SUFFIX); exit 1) ) |
| 721 | @rm -f .test.c .test.o .test$(EXEC_SUFFIX) |
Carl-Daniel Hailfinger | e7a39bf | 2012-11-20 21:06:16 +0000 | [diff] [blame] | 722 | endif |
| 723 | ifeq ($(CHECK_LIBUSB0), yes) |
| 724 | @printf "Checking for libusb-0.1/libusb-compat headers... " |
| 725 | @echo "$$LIBUSB0_TEST" > .test.c |
| 726 | @$(CC) -c $(CPPFLAGS) $(CFLAGS) .test.c -o .test.o >/dev/null && \ |
| 727 | echo "found." || ( echo "not found."; echo; \ |
| 728 | echo "Please install libusb-0.1 headers or libusb-compat headers."; \ |
| 729 | echo "See README for more information."; echo; \ |
| 730 | rm -f .test.c .test.o; exit 1) |
| 731 | @printf "Checking if libusb-0.1 is usable... " |
Carl-Daniel Hailfinger | 26148ae | 2012-11-29 22:22:04 +0000 | [diff] [blame] | 732 | @$(CC) $(LDFLAGS) .test.o -o .test$(EXEC_SUFFIX) $(LIBS) $(USBLIBS) >/dev/null && \ |
Carl-Daniel Hailfinger | e7a39bf | 2012-11-20 21:06:16 +0000 | [diff] [blame] | 733 | echo "yes." || ( echo "no."; \ |
| 734 | echo "Please install libusb-0.1 or libusb-compat."; \ |
| 735 | echo "See README for more information."; echo; \ |
| 736 | rm -f .test.c .test.o .test$(EXEC_SUFFIX); exit 1) |
| 737 | @rm -f .test.c .test.o .test$(EXEC_SUFFIX) |
Carl-Daniel Hailfinger | 8a59ff0 | 2009-12-24 03:33:11 +0000 | [diff] [blame] | 738 | endif |
Stefan Reinauer | 53e9625 | 2005-12-01 16:19:24 +0000 | [diff] [blame] | 739 | |
Carl-Daniel Hailfinger | b18ecbc | 2009-06-19 14:20:34 +0000 | [diff] [blame] | 740 | .features: features |
| 741 | |
Carl-Daniel Hailfinger | 5d3fcb9 | 2010-06-14 18:40:59 +0000 | [diff] [blame] | 742 | # If a user does not explicitly request a non-working feature, we should |
| 743 | # silently disable it. However, if a non-working (does not compile) feature |
| 744 | # is explicitly requested, we should bail out with a descriptive error message. |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 745 | # We also have to check that at least one programmer driver is enabled. |
Carl-Daniel Hailfinger | 5d3fcb9 | 2010-06-14 18:40:59 +0000 | [diff] [blame] | 746 | featuresavailable: |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 747 | ifeq ($(PROGRAMMER_OBJS),) |
| 748 | @echo "You have to enable at least one programmer driver!" |
| 749 | @false |
| 750 | endif |
| 751 | ifneq ($(UNSUPPORTED_FEATURES), ) |
Carl-Daniel Hailfinger | 5d3fcb9 | 2010-06-14 18:40:59 +0000 | [diff] [blame] | 752 | @echo "The following features are unavailable on your machine: $(UNSUPPORTED_FEATURES)" |
| 753 | @false |
| 754 | endif |
| 755 | |
Stefan Tauner | 5678708 | 2011-08-18 02:27:19 +0000 | [diff] [blame] | 756 | define FTDI_TEST |
| 757 | #include <ftdi.h> |
| 758 | struct ftdi_context *ftdic = NULL; |
| 759 | int main(int argc, char **argv) |
| 760 | { |
| 761 | (void) argc; |
| 762 | (void) argv; |
| 763 | return ftdi_init(ftdic); |
| 764 | } |
| 765 | endef |
| 766 | export FTDI_TEST |
| 767 | |
Ilya A. Volynets-Evenbakh | 2c714ab | 2012-09-26 00:47:09 +0000 | [diff] [blame] | 768 | define FTDI_232H_TEST |
| 769 | #include <ftdi.h> |
| 770 | enum ftdi_chip_type type = TYPE_232H; |
| 771 | endef |
| 772 | export FTDI_232H_TEST |
| 773 | |
Stefan Tauner | 5678708 | 2011-08-18 02:27:19 +0000 | [diff] [blame] | 774 | define UTSNAME_TEST |
| 775 | #include <sys/utsname.h> |
| 776 | struct utsname osinfo; |
| 777 | int main(int argc, char **argv) |
| 778 | { |
| 779 | (void) argc; |
| 780 | (void) argv; |
| 781 | uname (&osinfo); |
| 782 | return 0; |
| 783 | } |
| 784 | endef |
| 785 | export UTSNAME_TEST |
| 786 | |
Stefan Tauner | 8868db3 | 2012-03-13 00:18:19 +0000 | [diff] [blame] | 787 | define LINUX_SPI_TEST |
| 788 | #include <linux/types.h> |
| 789 | #include <linux/spi/spidev.h> |
| 790 | |
| 791 | int main(int argc, char **argv) |
| 792 | { |
| 793 | (void) argc; |
| 794 | (void) argv; |
| 795 | return 0; |
| 796 | } |
| 797 | endef |
| 798 | export LINUX_SPI_TEST |
| 799 | |
Carl-Daniel Hailfinger | b18ecbc | 2009-06-19 14:20:34 +0000 | [diff] [blame] | 800 | features: compiler |
| 801 | @echo "FEATURES := yes" > .features.tmp |
Stefan Tauner | 5678708 | 2011-08-18 02:27:19 +0000 | [diff] [blame] | 802 | ifeq ($(CONFIG_FT2232_SPI), yes) |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 803 | @printf "Checking for FTDI support... " |
Stefan Tauner | 5678708 | 2011-08-18 02:27:19 +0000 | [diff] [blame] | 804 | @echo "$$FTDI_TEST" > .featuretest.c |
Carl-Daniel Hailfinger | ddbab71 | 2010-06-14 14:44:08 +0000 | [diff] [blame] | 805 | @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) $(FTDILIBS) $(LIBS) >/dev/null 2>&1 && \ |
Carl-Daniel Hailfinger | b18ecbc | 2009-06-19 14:20:34 +0000 | [diff] [blame] | 806 | ( echo "found."; echo "FTDISUPPORT := yes" >> .features.tmp ) || \ |
| 807 | ( echo "not found."; echo "FTDISUPPORT := no" >> .features.tmp ) |
Ilya A. Volynets-Evenbakh | 2c714ab | 2012-09-26 00:47:09 +0000 | [diff] [blame] | 808 | @printf "Checking for FT232H support in libftdi... " |
| 809 | @echo "$$FTDI_232H_TEST" >> .featuretest.c |
| 810 | @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) $(FTDILIBS) $(LIBS) >/dev/null 2>&1 && \ |
| 811 | ( echo "found."; echo "FT232H := yes" >> .features.tmp ) || \ |
| 812 | ( echo "not found."; echo "FT232H := no" >> .features.tmp ) |
Carl-Daniel Hailfinger | 8a59ff0 | 2009-12-24 03:33:11 +0000 | [diff] [blame] | 813 | endif |
Stefan Tauner | 8868db3 | 2012-03-13 00:18:19 +0000 | [diff] [blame] | 814 | ifeq ($(CONFIG_LINUX_SPI), yes) |
| 815 | @printf "Checking if Linux SPI headers are present... " |
| 816 | @echo "$$LINUX_SPI_TEST" > .featuretest.c |
| 817 | @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) >/dev/null 2>&1 && \ |
| 818 | ( echo "yes."; echo "LINUX_SPI_SUPPORT := yes" >> .features.tmp ) || \ |
| 819 | ( echo "no."; echo "LINUX_SPI_SUPPORT := no" >> .features.tmp ) |
| 820 | endif |
Stefan Tauner | 5678708 | 2011-08-18 02:27:19 +0000 | [diff] [blame] | 821 | @printf "Checking for utsname support... " |
| 822 | @echo "$$UTSNAME_TEST" > .featuretest.c |
| 823 | @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) >/dev/null 2>&1 && \ |
| 824 | ( echo "found."; echo "UTSNAME := yes" >> .features.tmp ) || \ |
| 825 | ( echo "not found."; echo "UTSNAME := no" >> .features.tmp ) |
| 826 | @$(DIFF) -q .features.tmp .features >/dev/null 2>&1 && rm .features.tmp || mv .features.tmp .features |
| 827 | @rm -f .featuretest.c .featuretest$(EXEC_SUFFIX) |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 828 | |
Carl-Daniel Hailfinger | ddbab71 | 2010-06-14 14:44:08 +0000 | [diff] [blame] | 829 | install: $(PROGRAM)$(EXEC_SUFFIX) |
Uwe Hermann | c2a9c9c | 2009-05-14 14:51:14 +0000 | [diff] [blame] | 830 | mkdir -p $(DESTDIR)$(PREFIX)/sbin |
Uwe Hermann | 56b2cb0 | 2009-05-21 15:59:58 +0000 | [diff] [blame] | 831 | mkdir -p $(DESTDIR)$(MANDIR)/man8 |
Carl-Daniel Hailfinger | ddbab71 | 2010-06-14 14:44:08 +0000 | [diff] [blame] | 832 | $(INSTALL) -m 0755 $(PROGRAM)$(EXEC_SUFFIX) $(DESTDIR)$(PREFIX)/sbin |
Uwe Hermann | 56b2cb0 | 2009-05-21 15:59:58 +0000 | [diff] [blame] | 833 | $(INSTALL) -m 0644 $(PROGRAM).8 $(DESTDIR)$(MANDIR)/man8 |
Uwe Hermann | c113b57 | 2006-12-14 00:59:41 +0000 | [diff] [blame] | 834 | |
Carl-Daniel Hailfinger | a23041c | 2009-06-12 14:49:10 +0000 | [diff] [blame] | 835 | export: |
Carl-Daniel Hailfinger | 48e5e09 | 2009-08-31 16:25:08 +0000 | [diff] [blame] | 836 | @rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME) |
| 837 | @svn export -r BASE . $(EXPORTDIR)/flashrom-$(RELEASENAME) |
| 838 | @sed "s/^SVNVERSION.*/SVNVERSION := $(SVNVERSION)/" Makefile >$(EXPORTDIR)/flashrom-$(RELEASENAME)/Makefile |
| 839 | @LC_ALL=C svn log >$(EXPORTDIR)/flashrom-$(RELEASENAME)/ChangeLog |
| 840 | @echo Exported $(EXPORTDIR)/flashrom-$(RELEASENAME)/ |
Carl-Daniel Hailfinger | a23041c | 2009-06-12 14:49:10 +0000 | [diff] [blame] | 841 | |
| 842 | tarball: export |
Carl-Daniel Hailfinger | 48e5e09 | 2009-08-31 16:25:08 +0000 | [diff] [blame] | 843 | @tar cjf $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2 -C $(EXPORTDIR)/ $(TAROPTIONS) flashrom-$(RELEASENAME)/ |
| 844 | @rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME) |
| 845 | @echo Created $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2 |
Carl-Daniel Hailfinger | a23041c | 2009-06-12 14:49:10 +0000 | [diff] [blame] | 846 | |
Carl-Daniel Hailfinger | 50415d2 | 2010-03-21 14:54:57 +0000 | [diff] [blame] | 847 | djgpp-dos: clean |
Carl-Daniel Hailfinger | 33a65a0 | 2011-12-20 00:51:44 +0000 | [diff] [blame] | 848 | make CC=i586-pc-msdosdjgpp-gcc STRIP=i586-pc-msdosdjgpp-strip |
| 849 | libpayload: clean |
| 850 | make CC="CC=i386-elf-gcc lpgcc" AR=i386-elf-ar RANLIB=i386-elf-ranlib |
Carl-Daniel Hailfinger | 50415d2 | 2010-03-21 14:54:57 +0000 | [diff] [blame] | 851 | |
Carl-Daniel Hailfinger | e7a39bf | 2012-11-20 21:06:16 +0000 | [diff] [blame] | 852 | .PHONY: all clean distclean compiler hwlibs features export tarball dos featuresavailable |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 853 | |
Stefan Reinauer | e2f0158 | 2010-06-07 11:08:07 +0000 | [diff] [blame] | 854 | -include $(OBJS:.o=.d) |