| 1 | #␊ |
| 2 | # This file is part of the flashrom project.␊ |
| 3 | #␊ |
| 4 | # Copyright (C) 2005 coresystems GmbH <stepan@coresystems.de>␊ |
| 5 | # Copyright (C) 2009,2010 Carl-Daniel Hailfinger␊ |
| 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␊ |
| 19 | #␊ |
| 20 | ␊ |
| 21 | PROGRAM = flashrom␊ |
| 22 | ␊ |
| 23 | CC ?= gcc␊ |
| 24 | STRIP ?= strip␊ |
| 25 | INSTALL = install␊ |
| 26 | DIFF = diff␊ |
| 27 | PREFIX ?= /usr/local␊ |
| 28 | MANDIR ?= $(PREFIX)/share/man␊ |
| 29 | CFLAGS ?= -Os -Wall -Wshadow␊ |
| 30 | EXPORTDIR ?= .␊ |
| 31 | AR ?= ar␊ |
| 32 | RANLIB ?= ranlib␊ |
| 33 | ␊ |
| 34 | WARNERROR ?= yes␊ |
| 35 | ␊ |
| 36 | ifeq ($(WARNERROR), yes)␊ |
| 37 | CFLAGS += -Werror␊ |
| 38 | endif␊ |
| 39 | ␊ |
| 40 | # HOST_OS is only used to work around local toolchain issues.␊ |
| 41 | HOST_OS␉?= $(shell uname)␊ |
| 42 | ifeq ($(HOST_OS), MINGW32_NT-5.1)␊ |
| 43 | # Explicitly set CC = gcc on MinGW, otherwise: "cc: command not found".␊ |
| 44 | CC = gcc␊ |
| 45 | endif␊ |
| 46 | ifneq ($(HOST_OS), SunOS)␊ |
| 47 | STRIP_ARGS = -s␊ |
| 48 | endif␊ |
| 49 | ␊ |
| 50 | # Determine the destination processor architecture.␊ |
| 51 | # IMPORTANT: The following line must be placed before TARGET_OS is ever used␊ |
| 52 | # (of course), but should come after any lines setting CC because the line␊ |
| 53 | # below uses CC itself.␊ |
| 54 | override TARGET_OS := $(strip $(shell LC_ALL=C $(CC) $(CPPFLAGS) -E os.h 2>/dev/null | grep -v '^\#' | grep '"' | cut -f 2 -d'"'))␊ |
| 55 | ␊ |
| 56 | ifeq ($(TARGET_OS), Darwin)␊ |
| 57 | CPPFLAGS += -I/opt/local/include -I/usr/local/include␊ |
| 58 | # DirectHW framework can be found in the DirectHW library.␊ |
| 59 | LDFLAGS += -framework IOKit -framework DirectHW -L/opt/local/lib -L/usr/local/lib␊ |
| 60 | endif␊ |
| 61 | ifeq ($(TARGET_OS), FreeBSD)␊ |
| 62 | CPPFLAGS += -I/usr/local/include␊ |
| 63 | LDFLAGS += -L/usr/local/lib␊ |
| 64 | endif␊ |
| 65 | ifeq ($(TARGET_OS), OpenBSD)␊ |
| 66 | CPPFLAGS += -I/usr/local/include␊ |
| 67 | LDFLAGS += -L/usr/local/lib␊ |
| 68 | endif␊ |
| 69 | ifeq ($(TARGET_OS), DOS)␊ |
| 70 | EXEC_SUFFIX := .exe␊ |
| 71 | CPPFLAGS += -I../libgetopt -I../libpci/include␊ |
| 72 | # DJGPP has odd uint*_t definitions which cause lots of format string warnings.␊ |
| 73 | CPPFLAGS += -Wno-format␊ |
| 74 | # FIXME Check if we can achieve the same effect with -L../libgetopt -lgetopt␊ |
| 75 | LIBS += ../libgetopt/libgetopt.a␊ |
| 76 | # Bus Pirate and Serprog are not supported under DOS (missing serial support).␊ |
| 77 | ifeq ($(CONFIG_BUSPIRATE_SPI), yes)␊ |
| 78 | UNSUPPORTED_FEATURES += CONFIG_BUSPIRATE_SPI=yes␊ |
| 79 | else␊ |
| 80 | override CONFIG_BUSPIRATE_SPI = no␊ |
| 81 | endif␊ |
| 82 | ifeq ($(CONFIG_SERPROG), yes)␊ |
| 83 | UNSUPPORTED_FEATURES += CONFIG_SERPROG=yes␊ |
| 84 | else␊ |
| 85 | override CONFIG_SERPROG = no␊ |
| 86 | endif␊ |
| 87 | # Dediprog and FT2232 are not supported under DOS (missing USB support).␊ |
| 88 | ifeq ($(CONFIG_DEDIPROG), yes)␊ |
| 89 | UNSUPPORTED_FEATURES += CONFIG_DEDIPROG=yes␊ |
| 90 | else␊ |
| 91 | override CONFIG_DEDIPROG = no␊ |
| 92 | endif␊ |
| 93 | ifeq ($(CONFIG_FT2232_SPI), yes)␊ |
| 94 | UNSUPPORTED_FEATURES += CONFIG_FT2232_SPI=yes␊ |
| 95 | else␊ |
| 96 | override CONFIG_FT2232_SPI = no␊ |
| 97 | endif␊ |
| 98 | endif␊ |
| 99 | ␊ |
| 100 | # FIXME: Should we check for Cygwin/MSVC as well?␊ |
| 101 | ifeq ($(TARGET_OS), MinGW)␊ |
| 102 | EXEC_SUFFIX := .exe␊ |
| 103 | # MinGW doesn't have the ffs() function, but we can use gcc's __builtin_ffs().␊ |
| 104 | CFLAGS += -Dffs=__builtin_ffs␊ |
| 105 | # libusb-win32/libftdi stuff is usually installed in /usr/local.␊ |
| 106 | CPPFLAGS += -I/usr/local/include␊ |
| 107 | LDFLAGS += -L/usr/local/lib␊ |
| 108 | # Serprog is not supported under Windows/MinGW (missing sockets support).␊ |
| 109 | ifeq ($(CONFIG_SERPROG), yes)␊ |
| 110 | UNSUPPORTED_FEATURES += CONFIG_SERPROG=yes␊ |
| 111 | else␊ |
| 112 | override CONFIG_SERPROG = no␊ |
| 113 | endif␊ |
| 114 | # For now we disable all PCI-based programmers on Windows/MinGW (no libpci).␊ |
| 115 | ifeq ($(CONFIG_INTERNAL), yes)␊ |
| 116 | UNSUPPORTED_FEATURES += CONFIG_INTERNAL=yes␊ |
| 117 | else␊ |
| 118 | override CONFIG_INTERNAL = no␊ |
| 119 | endif␊ |
| 120 | ifeq ($(CONFIG_RAYER_SPI), yes)␊ |
| 121 | UNSUPPORTED_FEATURES += CONFIG_RAYER_SPI=yes␊ |
| 122 | else␊ |
| 123 | override CONFIG_RAYER_SPI = no␊ |
| 124 | endif␊ |
| 125 | ifeq ($(CONFIG_NIC3COM), yes)␊ |
| 126 | UNSUPPORTED_FEATURES += CONFIG_NIC3COM=yes␊ |
| 127 | else␊ |
| 128 | override CONFIG_NIC3COM = no␊ |
| 129 | endif␊ |
| 130 | ifeq ($(CONFIG_GFXNVIDIA), yes)␊ |
| 131 | UNSUPPORTED_FEATURES += CONFIG_GFXNVIDIA=yes␊ |
| 132 | else␊ |
| 133 | override CONFIG_GFXNVIDIA = no␊ |
| 134 | endif␊ |
| 135 | ifeq ($(CONFIG_SATASII), yes)␊ |
| 136 | UNSUPPORTED_FEATURES += CONFIG_SATASII=yes␊ |
| 137 | else␊ |
| 138 | override CONFIG_SATASII = no␊ |
| 139 | endif␊ |
| 140 | ifeq ($(CONFIG_ATAHPT), yes)␊ |
| 141 | UNSUPPORTED_FEATURES += CONFIG_ATAHPT=yes␊ |
| 142 | else␊ |
| 143 | override CONFIG_ATAHPT = no␊ |
| 144 | endif␊ |
| 145 | ifeq ($(CONFIG_DRKAISER), yes)␊ |
| 146 | UNSUPPORTED_FEATURES += CONFIG_DRKAISER=yes␊ |
| 147 | else␊ |
| 148 | override CONFIG_DRKAISER = no␊ |
| 149 | endif␊ |
| 150 | ifeq ($(CONFIG_NICREALTEK), yes)␊ |
| 151 | UNSUPPORTED_FEATURES += CONFIG_NICREALTEK=yes␊ |
| 152 | else␊ |
| 153 | override CONFIG_NICREALTEK = no␊ |
| 154 | endif␊ |
| 155 | ifeq ($(CONFIG_NICNATSEMI), yes)␊ |
| 156 | UNSUPPORTED_FEATURES += CONFIG_NICNATSEMI=yes␊ |
| 157 | else␊ |
| 158 | override CONFIG_NICNATSEMI = no␊ |
| 159 | endif␊ |
| 160 | ifeq ($(CONFIG_NICINTEL), yes)␊ |
| 161 | UNSUPPORTED_FEATURES += CONFIG_NICINTEL=yes␊ |
| 162 | else␊ |
| 163 | override CONFIG_NICINTEL = no␊ |
| 164 | endif␊ |
| 165 | ifeq ($(CONFIG_NICINTEL_SPI), yes)␊ |
| 166 | UNSUPPORTED_FEATURES += CONFIG_NICINTEL_SPI=yes␊ |
| 167 | else␊ |
| 168 | override CONFIG_NICINTEL_SPI = no␊ |
| 169 | endif␊ |
| 170 | ifeq ($(CONFIG_OGP_SPI), yes)␊ |
| 171 | UNSUPPORTED_FEATURES += CONFIG_OGP_SPI=yes␊ |
| 172 | else␊ |
| 173 | override CONFIG_OGP_SPI = no␊ |
| 174 | endif␊ |
| 175 | ifeq ($(CONFIG_SATAMV), yes)␊ |
| 176 | UNSUPPORTED_FEATURES += CONFIG_SATAMV=yes␊ |
| 177 | else␊ |
| 178 | override CONFIG_SATAMV = no␊ |
| 179 | endif␊ |
| 180 | endif␊ |
| 181 | ␊ |
| 182 | ifeq ($(TARGET_OS), libpayload)␊ |
| 183 | CPPFLAGS += -DSTANDALONE␊ |
| 184 | ifeq ($(CONFIG_DUMMY), yes)␊ |
| 185 | UNSUPPORTED_FEATURES += CONFIG_DUMMY=yes␊ |
| 186 | else␊ |
| 187 | override CONFIG_DUMMY = no␊ |
| 188 | endif␊ |
| 189 | ifeq ($(CONFIG_BUSPIRATE_SPI), yes)␊ |
| 190 | UNSUPPORTED_FEATURES += CONFIG_BUSPIRATE_SPI=yes␊ |
| 191 | else␊ |
| 192 | override CONFIG_BUSPIRATE_SPI = no␊ |
| 193 | endif␊ |
| 194 | ifeq ($(CONFIG_SERPROG), yes)␊ |
| 195 | UNSUPPORTED_FEATURES += CONFIG_SERPROG=yes␊ |
| 196 | else␊ |
| 197 | override CONFIG_SERPROG = no␊ |
| 198 | endif␊ |
| 199 | # Dediprog and FT2232 are not supported with libpayload (missing libusb support)␊ |
| 200 | ifeq ($(CONFIG_DEDIPROG), yes)␊ |
| 201 | UNSUPPORTED_FEATURES += CONFIG_DEDIPROG=yes␊ |
| 202 | else␊ |
| 203 | override CONFIG_DEDIPROG = no␊ |
| 204 | endif␊ |
| 205 | ifeq ($(CONFIG_FT2232_SPI), yes)␊ |
| 206 | UNSUPPORTED_FEATURES += CONFIG_FT2232_SPI=yes␊ |
| 207 | else␊ |
| 208 | override CONFIG_FT2232_SPI = no␊ |
| 209 | endif␊ |
| 210 | endif␊ |
| 211 | ␊ |
| 212 | # Determine the destination processor architecture.␊ |
| 213 | # IMPORTANT: The following line must be placed before ARCH is ever used␊ |
| 214 | # (of course), but should come after any lines setting CC because the line␊ |
| 215 | # below uses CC itself.␊ |
| 216 | override ARCH := $(strip $(shell LC_ALL=C $(CC) $(CPPFLAGS) -E arch.h 2>/dev/null | grep -v '^\#' | grep '"' | cut -f 2 -d'"'))␊ |
| 217 | ␊ |
| 218 | ifeq ($(ARCH), ppc)␊ |
| 219 | # There's no PCI port I/O support on PPC/PowerPC, yet.␊ |
| 220 | ifeq ($(CONFIG_NIC3COM), yes)␊ |
| 221 | UNSUPPORTED_FEATURES += CONFIG_NIC3COM=yes␊ |
| 222 | else␊ |
| 223 | override CONFIG_NIC3COM = no␊ |
| 224 | endif␊ |
| 225 | ifeq ($(CONFIG_NICREALTEK), yes)␊ |
| 226 | UNSUPPORTED_FEATURES += CONFIG_NICREALTEK=yes␊ |
| 227 | else␊ |
| 228 | override CONFIG_NICREALTEK = no␊ |
| 229 | endif␊ |
| 230 | ifeq ($(CONFIG_NICNATSEMI), yes)␊ |
| 231 | UNSUPPORTED_FEATURES += CONFIG_NICNATSEMI=yes␊ |
| 232 | else␊ |
| 233 | override CONFIG_NICNATSEMI = no␊ |
| 234 | endif␊ |
| 235 | ifeq ($(CONFIG_RAYER_SPI), yes)␊ |
| 236 | UNSUPPORTED_FEATURES += CONFIG_RAYER_SPI=yes␊ |
| 237 | else␊ |
| 238 | override CONFIG_RAYER_SPI = no␊ |
| 239 | endif␊ |
| 240 | ifeq ($(CONFIG_ATAHPT), yes)␊ |
| 241 | UNSUPPORTED_FEATURES += CONFIG_ATAHPT=yes␊ |
| 242 | else␊ |
| 243 | override CONFIG_ATAHPT = no␊ |
| 244 | endif␊ |
| 245 | ifeq ($(CONFIG_SATAMV), yes)␊ |
| 246 | UNSUPPORTED_FEATURES += CONFIG_SATAMV=yes␊ |
| 247 | else␊ |
| 248 | override CONFIG_SATAMV = no␊ |
| 249 | endif␊ |
| 250 | endif␊ |
| 251 | ␊ |
| 252 | CHIP_OBJS = jedec.o stm50flw0x0x.o w39.o w29ee011.o \␊ |
| 253 | ␉sst28sf040.o m29f400bt.o 82802ab.o pm49fl00x.o \␊ |
| 254 | ␉sst49lfxxxc.o sst_fwhub.o flashchips.o spi.o spi25.o sharplhf00l04.o \␊ |
| 255 | ␉a25.o at25.o opaque.o␊ |
| 256 | ␊ |
| 257 | LIB_OBJS = layout.o␊ |
| 258 | ␊ |
| 259 | CLI_OBJS = flashrom.o cli_classic.o cli_output.o print.o␊ |
| 260 | ␊ |
| 261 | PROGRAMMER_OBJS = udelay.o programmer.o␊ |
| 262 | ␊ |
| 263 | all: pciutils features $(PROGRAM)$(EXEC_SUFFIX)␊ |
| 264 | ␊ |
| 265 | # Set the flashrom version string from the highest revision number␊ |
| 266 | # of the checked out flashrom files.␊ |
| 267 | # Note to packagers: Any tree exported with "make export" or "make tarball"␊ |
| 268 | # will not require subversion. The downloadable snapshots are already exported.␊ |
| 269 | 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)␊ |
| 270 | ␊ |
| 271 | RELEASE := 0.9.4␊ |
| 272 | VERSION := $(RELEASE)-r$(SVNVERSION)␊ |
| 273 | RELEASENAME ?= $(VERSION)␊ |
| 274 | ␊ |
| 275 | SVNDEF := -D'FLASHROM_VERSION="$(VERSION)"'␊ |
| 276 | ␊ |
| 277 | # Always enable internal/onboard support for now.␊ |
| 278 | CONFIG_INTERNAL ?= yes␊ |
| 279 | ␊ |
| 280 | # Always enable serprog for now. Needs to be disabled on Windows.␊ |
| 281 | CONFIG_SERPROG ?= yes␊ |
| 282 | ␊ |
| 283 | # RayeR SPIPGM hardware support␊ |
| 284 | CONFIG_RAYER_SPI ?= yes␊ |
| 285 | ␊ |
| 286 | # Always enable 3Com NICs for now.␊ |
| 287 | CONFIG_NIC3COM ?= yes␊ |
| 288 | ␊ |
| 289 | # Enable NVIDIA graphics cards. Note: write and erase do not work properly.␊ |
| 290 | CONFIG_GFXNVIDIA ?= yes␊ |
| 291 | ␊ |
| 292 | # Always enable SiI SATA controllers for now.␊ |
| 293 | CONFIG_SATASII ?= yes␊ |
| 294 | ␊ |
| 295 | # Highpoint (HPT) ATA/RAID controller support.␊ |
| 296 | # IMPORTANT: This code is not yet working!␊ |
| 297 | CONFIG_ATAHPT ?= no␊ |
| 298 | ␊ |
| 299 | # Always enable FT2232 SPI dongles for now.␊ |
| 300 | CONFIG_FT2232_SPI ?= yes␊ |
| 301 | ␊ |
| 302 | # Always enable dummy tracing for now.␊ |
| 303 | CONFIG_DUMMY ?= yes␊ |
| 304 | ␊ |
| 305 | # Always enable Dr. Kaiser for now.␊ |
| 306 | CONFIG_DRKAISER ?= yes␊ |
| 307 | ␊ |
| 308 | # Always enable Realtek NICs for now.␊ |
| 309 | CONFIG_NICREALTEK ?= yes␊ |
| 310 | ␊ |
| 311 | # Disable National Semiconductor NICs until support is complete and tested.␊ |
| 312 | CONFIG_NICNATSEMI ?= no␊ |
| 313 | ␊ |
| 314 | # Always enable Intel NICs for now.␊ |
| 315 | CONFIG_NICINTEL ?= yes␊ |
| 316 | ␊ |
| 317 | # Always enable SPI on Intel NICs for now.␊ |
| 318 | CONFIG_NICINTEL_SPI ?= yes␊ |
| 319 | ␊ |
| 320 | # Always enable SPI on OGP cards for now.␊ |
| 321 | CONFIG_OGP_SPI ?= yes␊ |
| 322 | ␊ |
| 323 | # Always enable Bus Pirate SPI for now.␊ |
| 324 | CONFIG_BUSPIRATE_SPI ?= yes␊ |
| 325 | ␊ |
| 326 | # Disable Linux spidev interface support for now, until we check for a Linux␊ |
| 327 | # device (not host, as DOS binaries for example are built on a Linux host).␊ |
| 328 | CONFIG_LINUX_SPI ?= no␊ |
| 329 | ␊ |
| 330 | # Disable Dediprog SF100 until support is complete and tested.␊ |
| 331 | CONFIG_DEDIPROG ?= no␊ |
| 332 | ␊ |
| 333 | # Always enable Marvell SATA controllers for now.␊ |
| 334 | CONFIG_SATAMV ?= yes␊ |
| 335 | ␊ |
| 336 | # Disable wiki printing by default. It is only useful if you have wiki access.␊ |
| 337 | CONFIG_PRINT_WIKI ?= no␊ |
| 338 | ␊ |
| 339 | # Bitbanging SPI infrastructure, default off unless needed.␊ |
| 340 | ifeq ($(CONFIG_RAYER_SPI), yes)␊ |
| 341 | override CONFIG_BITBANG_SPI = yes␊ |
| 342 | else␊ |
| 343 | ifeq ($(CONFIG_INTERNAL), yes)␊ |
| 344 | override CONFIG_BITBANG_SPI = yes␊ |
| 345 | else␊ |
| 346 | ifeq ($(CONFIG_NICINTEL_SPI), yes)␊ |
| 347 | override CONFIG_BITBANG_SPI = yes␊ |
| 348 | else␊ |
| 349 | ifeq ($(CONFIG_OGP_SPI), yes)␊ |
| 350 | override CONFIG_BITBANG_SPI = yes␊ |
| 351 | else␊ |
| 352 | CONFIG_BITBANG_SPI ?= no␊ |
| 353 | endif␊ |
| 354 | endif␊ |
| 355 | endif␊ |
| 356 | endif␊ |
| 357 | ␊ |
| 358 | ifeq ($(CONFIG_INTERNAL), yes)␊ |
| 359 | FEATURE_CFLAGS += -D'CONFIG_INTERNAL=1'␊ |
| 360 | PROGRAMMER_OBJS += processor_enable.o chipset_enable.o board_enable.o cbtable.o dmi.o internal.o␊ |
| 361 | ifeq ($(ARCH), x86)␊ |
| 362 | PROGRAMMER_OBJS += it87spi.o it85spi.o sb600spi.o wbsio_spi.o mcp6x_spi.o␊ |
| 363 | PROGRAMMER_OBJS += ichspi.o ich_descriptors.o␊ |
| 364 | else␊ |
| 365 | endif␊ |
| 366 | NEED_PCI := yes␊ |
| 367 | endif␊ |
| 368 | ␊ |
| 369 | ifeq ($(CONFIG_SERPROG), yes)␊ |
| 370 | FEATURE_CFLAGS += -D'CONFIG_SERPROG=1'␊ |
| 371 | PROGRAMMER_OBJS += serprog.o␊ |
| 372 | NEED_SERIAL := yes␊ |
| 373 | NEED_NET := yes␊ |
| 374 | endif␊ |
| 375 | ␊ |
| 376 | ifeq ($(CONFIG_RAYER_SPI), yes)␊ |
| 377 | FEATURE_CFLAGS += -D'CONFIG_RAYER_SPI=1'␊ |
| 378 | PROGRAMMER_OBJS += rayer_spi.o␊ |
| 379 | # Actually, NEED_PCI is wrong. NEED_IOPORT_ACCESS would be more correct.␊ |
| 380 | NEED_PCI := yes␊ |
| 381 | endif␊ |
| 382 | ␊ |
| 383 | ifeq ($(CONFIG_BITBANG_SPI), yes)␊ |
| 384 | FEATURE_CFLAGS += -D'CONFIG_BITBANG_SPI=1'␊ |
| 385 | PROGRAMMER_OBJS += bitbang_spi.o␊ |
| 386 | endif␊ |
| 387 | ␊ |
| 388 | ifeq ($(CONFIG_NIC3COM), yes)␊ |
| 389 | FEATURE_CFLAGS += -D'CONFIG_NIC3COM=1'␊ |
| 390 | PROGRAMMER_OBJS += nic3com.o␊ |
| 391 | NEED_PCI := yes␊ |
| 392 | endif␊ |
| 393 | ␊ |
| 394 | ifeq ($(CONFIG_GFXNVIDIA), yes)␊ |
| 395 | FEATURE_CFLAGS += -D'CONFIG_GFXNVIDIA=1'␊ |
| 396 | PROGRAMMER_OBJS += gfxnvidia.o␊ |
| 397 | NEED_PCI := yes␊ |
| 398 | endif␊ |
| 399 | ␊ |
| 400 | ifeq ($(CONFIG_SATASII), yes)␊ |
| 401 | FEATURE_CFLAGS += -D'CONFIG_SATASII=1'␊ |
| 402 | PROGRAMMER_OBJS += satasii.o␊ |
| 403 | NEED_PCI := yes␊ |
| 404 | endif␊ |
| 405 | ␊ |
| 406 | ifeq ($(CONFIG_ATAHPT), yes)␊ |
| 407 | FEATURE_CFLAGS += -D'CONFIG_ATAHPT=1'␊ |
| 408 | PROGRAMMER_OBJS += atahpt.o␊ |
| 409 | NEED_PCI := yes␊ |
| 410 | endif␊ |
| 411 | ␊ |
| 412 | ifeq ($(CONFIG_FT2232_SPI), yes)␊ |
| 413 | FTDILIBS := $(shell pkg-config --libs libftdi 2>/dev/null || printf "%s" "-lftdi -lusb")␊ |
| 414 | # This is a totally ugly hack.␊ |
| 415 | FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "FTDISUPPORT := yes" .features && printf "%s" "-D'CONFIG_FT2232_SPI=1'")␊ |
| 416 | FEATURE_LIBS += $(shell LC_ALL=C grep -q "FTDISUPPORT := yes" .features && printf "%s" "$(FTDILIBS)")␊ |
| 417 | PROGRAMMER_OBJS += ft2232_spi.o␊ |
| 418 | endif␊ |
| 419 | ␊ |
| 420 | ifeq ($(CONFIG_DUMMY), yes)␊ |
| 421 | FEATURE_CFLAGS += -D'CONFIG_DUMMY=1'␊ |
| 422 | PROGRAMMER_OBJS += dummyflasher.o␊ |
| 423 | endif␊ |
| 424 | ␊ |
| 425 | ifeq ($(CONFIG_DRKAISER), yes)␊ |
| 426 | FEATURE_CFLAGS += -D'CONFIG_DRKAISER=1'␊ |
| 427 | PROGRAMMER_OBJS += drkaiser.o␊ |
| 428 | NEED_PCI := yes␊ |
| 429 | endif␊ |
| 430 | ␊ |
| 431 | ifeq ($(CONFIG_NICREALTEK), yes)␊ |
| 432 | FEATURE_CFLAGS += -D'CONFIG_NICREALTEK=1'␊ |
| 433 | PROGRAMMER_OBJS += nicrealtek.o␊ |
| 434 | NEED_PCI := yes␊ |
| 435 | endif␊ |
| 436 | ␊ |
| 437 | ifeq ($(CONFIG_NICNATSEMI), yes)␊ |
| 438 | FEATURE_CFLAGS += -D'CONFIG_NICNATSEMI=1'␊ |
| 439 | PROGRAMMER_OBJS += nicnatsemi.o␊ |
| 440 | NEED_PCI := yes␊ |
| 441 | endif␊ |
| 442 | ␊ |
| 443 | ifeq ($(CONFIG_NICINTEL), yes)␊ |
| 444 | FEATURE_CFLAGS += -D'CONFIG_NICINTEL=1'␊ |
| 445 | PROGRAMMER_OBJS += nicintel.o␊ |
| 446 | NEED_PCI := yes␊ |
| 447 | endif␊ |
| 448 | ␊ |
| 449 | ifeq ($(CONFIG_NICINTEL_SPI), yes)␊ |
| 450 | FEATURE_CFLAGS += -D'CONFIG_NICINTEL_SPI=1'␊ |
| 451 | PROGRAMMER_OBJS += nicintel_spi.o␊ |
| 452 | NEED_PCI := yes␊ |
| 453 | endif␊ |
| 454 | ␊ |
| 455 | ifeq ($(CONFIG_OGP_SPI), yes)␊ |
| 456 | FEATURE_CFLAGS += -D'CONFIG_OGP_SPI=1'␊ |
| 457 | PROGRAMMER_OBJS += ogp_spi.o␊ |
| 458 | NEED_PCI := yes␊ |
| 459 | endif␊ |
| 460 | ␊ |
| 461 | ifeq ($(CONFIG_BUSPIRATE_SPI), yes)␊ |
| 462 | FEATURE_CFLAGS += -D'CONFIG_BUSPIRATE_SPI=1'␊ |
| 463 | PROGRAMMER_OBJS += buspirate_spi.o␊ |
| 464 | NEED_SERIAL := yes␊ |
| 465 | endif␊ |
| 466 | ␊ |
| 467 | ifeq ($(CONFIG_LINUX_SPI), yes)␊ |
| 468 | FEATURE_CFLAGS += -D'CONFIG_LINUX_SPI=1'␊ |
| 469 | PROGRAMMER_OBJS += linux_spi.o␊ |
| 470 | endif␊ |
| 471 | ␊ |
| 472 | ifeq ($(CONFIG_DEDIPROG), yes)␊ |
| 473 | FEATURE_CFLAGS += -D'CONFIG_DEDIPROG=1'␊ |
| 474 | FEATURE_LIBS += -lusb␊ |
| 475 | PROGRAMMER_OBJS += dediprog.o␊ |
| 476 | endif␊ |
| 477 | ␊ |
| 478 | ifeq ($(CONFIG_SATAMV), yes)␊ |
| 479 | FEATURE_CFLAGS += -D'CONFIG_SATAMV=1'␊ |
| 480 | PROGRAMMER_OBJS += satamv.o␊ |
| 481 | NEED_PCI := yes␊ |
| 482 | endif␊ |
| 483 | ␊ |
| 484 | ifeq ($(NEED_SERIAL), yes)␊ |
| 485 | LIB_OBJS += serial.o␊ |
| 486 | endif␊ |
| 487 | ␊ |
| 488 | ifeq ($(NEED_NET), yes)␊ |
| 489 | ifeq ($(TARGET_OS), SunOS)␊ |
| 490 | LIBS += -lsocket␊ |
| 491 | endif␊ |
| 492 | endif␊ |
| 493 | ␊ |
| 494 | ifeq ($(NEED_PCI), yes)␊ |
| 495 | CHECK_LIBPCI = yes␊ |
| 496 | FEATURE_CFLAGS += -D'NEED_PCI=1'␊ |
| 497 | PROGRAMMER_OBJS += pcidev.o physmap.o hwaccess.o␊ |
| 498 | ifeq ($(TARGET_OS), NetBSD)␊ |
| 499 | # The libpci we want is called libpciutils on NetBSD and needs NetBSD libpci.␊ |
| 500 | LIBS += -lpciutils -lpci␊ |
| 501 | # For (i386|x86_64)_iopl(2).␊ |
| 502 | LIBS += -l$(shell uname -p)␊ |
| 503 | else␊ |
| 504 | ifeq ($(TARGET_OS), DOS)␊ |
| 505 | # FIXME There needs to be a better way to do this␊ |
| 506 | LIBS += ../libpci/lib/libpci.a␊ |
| 507 | else␊ |
| 508 | LIBS += -lpci␊ |
| 509 | ifeq ($(TARGET_OS), OpenBSD)␊ |
| 510 | # For (i386|amd64)_iopl(2).␊ |
| 511 | LIBS += -l$(shell uname -m)␊ |
| 512 | endif␊ |
| 513 | endif␊ |
| 514 | endif␊ |
| 515 | endif␊ |
| 516 | ␊ |
| 517 | ifeq ($(CONFIG_PRINT_WIKI), yes)␊ |
| 518 | FEATURE_CFLAGS += -D'CONFIG_PRINT_WIKI=1'␊ |
| 519 | CLI_OBJS += print_wiki.o␊ |
| 520 | endif␊ |
| 521 | ␊ |
| 522 | FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "UTSNAME := yes" .features && printf "%s" "-D'HAVE_UTSNAME=1'")␊ |
| 523 | ␊ |
| 524 | # We could use PULLED_IN_LIBS, but that would be ugly.␊ |
| 525 | FEATURE_LIBS += $(shell LC_ALL=C grep -q "NEEDLIBZ := yes" .libdeps && printf "%s" "-lz")␊ |
| 526 | ␊ |
| 527 | LIBFLASHROM_OBJS = $(CHIP_OBJS) $(PROGRAMMER_OBJS) $(LIB_OBJS)␊ |
| 528 | OBJS = $(CLI_OBJS) $(LIBFLASHROM_OBJS) ␊ |
| 529 | ␊ |
| 530 | $(PROGRAM)$(EXEC_SUFFIX): $(OBJS)␊ |
| 531 | ␉$(CC) $(LDFLAGS) -o $(PROGRAM)$(EXEC_SUFFIX) $(OBJS) $(FEATURE_LIBS) $(LIBS)␊ |
| 532 | ␊ |
| 533 | libflashrom.a: $(LIBFLASHROM_OBJS)␊ |
| 534 | ␉$(AR) rcs $@ $^␊ |
| 535 | ␉$(RANLIB) $@␊ |
| 536 | ␊ |
| 537 | # TAROPTIONS reduces information leakage from the packager's system.␊ |
| 538 | # If other tar programs support command line arguments for setting uid/gid of␊ |
| 539 | # stored files, they can be handled here as well.␊ |
| 540 | TAROPTIONS = $(shell LC_ALL=C tar --version|grep -q GNU && echo "--owner=root --group=root")␊ |
| 541 | ␊ |
| 542 | %.o: %.c .features␊ |
| 543 | ␉$(CC) -MMD $(CFLAGS) $(CPPFLAGS) $(FEATURE_CFLAGS) $(SVNDEF) -o $@ -c $<␊ |
| 544 | ␊ |
| 545 | # Make sure to add all names of generated binaries here.␊ |
| 546 | # This includes all frontends and libflashrom.␊ |
| 547 | # We don't use EXEC_SUFFIX here because we want to clean everything.␊ |
| 548 | clean:␊ |
| 549 | ␉rm -f $(PROGRAM) $(PROGRAM).exe libflashrom.a *.o *.d␊ |
| 550 | ␊ |
| 551 | distclean: clean␊ |
| 552 | ␉rm -f .features .libdeps␊ |
| 553 | ␊ |
| 554 | strip: $(PROGRAM)$(EXEC_SUFFIX)␊ |
| 555 | ␉$(STRIP) $(STRIP_ARGS) $(PROGRAM)$(EXEC_SUFFIX)␊ |
| 556 | ␊ |
| 557 | # to define test programs we use verbatim variables, which get exported␊ |
| 558 | # to environment variables and are referenced with $$<varname> later␊ |
| 559 | ␊ |
| 560 | define COMPILER_TEST␊ |
| 561 | int main(int argc, char **argv)␊ |
| 562 | {␊ |
| 563 | ␉(void) argc;␊ |
| 564 | ␉(void) argv;␊ |
| 565 | ␉return 0;␊ |
| 566 | }␊ |
| 567 | endef␊ |
| 568 | export COMPILER_TEST␊ |
| 569 | ␊ |
| 570 | compiler: featuresavailable␊ |
| 571 | ␉@printf "Checking for a C compiler... "␊ |
| 572 | ␉@echo "$$COMPILER_TEST" > .test.c␊ |
| 573 | ␉@$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .test.c -o .test$(EXEC_SUFFIX) >/dev/null 2>&1 &&␉\␊ |
| 574 | ␉␉echo "found." || ( echo "not found."; \␊ |
| 575 | ␉␉rm -f .test.c .test$(EXEC_SUFFIX); exit 1)␊ |
| 576 | ␉@rm -f .test.c .test$(EXEC_SUFFIX)␊ |
| 577 | ␉@printf "Target arch is "␊ |
| 578 | ␉@# FreeBSD wc will output extraneous whitespace.␊ |
| 579 | ␉@echo $(ARCH)|wc -w|grep -q '^[[:blank:]]*1[[:blank:]]*$$' ||␉\␊ |
| 580 | ␉␉( echo "unknown. Aborting."; exit 1)␊ |
| 581 | ␉@printf "%s\n" '$(ARCH)'␊ |
| 582 | ␉@printf "Target OS is "␊ |
| 583 | ␉@# FreeBSD wc will output extraneous whitespace.␊ |
| 584 | ␉@echo $(TARGET_OS)|wc -w|grep -q '^[[:blank:]]*1[[:blank:]]*$$' ||␉\␊ |
| 585 | ␉␉( echo "unknown. Aborting."; exit 1)␊ |
| 586 | ␉@printf "%s\n" '$(TARGET_OS)'␊ |
| 587 | ␊ |
| 588 | define LIBPCI_TEST␊ |
| 589 | /* Avoid a failing test due to libpci header symbol shadowing breakage */␊ |
| 590 | #define index shadow_workaround_index␊ |
| 591 | #include <pci/pci.h>␊ |
| 592 | struct pci_access *pacc;␊ |
| 593 | int main(int argc, char **argv)␊ |
| 594 | {␊ |
| 595 | ␉(void) argc;␊ |
| 596 | ␉(void) argv;␊ |
| 597 | ␉pacc = pci_alloc();␊ |
| 598 | ␉return 0;␊ |
| 599 | }␊ |
| 600 | endef␊ |
| 601 | export LIBPCI_TEST␊ |
| 602 | ␊ |
| 603 | ifeq ($(CHECK_LIBPCI), yes)␊ |
| 604 | pciutils: compiler␊ |
| 605 | ␉@printf "Checking for libpci headers... "␊ |
| 606 | ␉@echo "$$LIBPCI_TEST" > .test.c␊ |
| 607 | ␉@$(CC) -c $(CPPFLAGS) $(CFLAGS) .test.c -o .test.o >/dev/null 2>&1 &&␉␉\␊ |
| 608 | ␉␉echo "found." || ( echo "not found."; echo;␉␉␉\␊ |
| 609 | ␉␉echo "Please install libpci headers (package pciutils-devel).";␉\␊ |
| 610 | ␉␉echo "See README for more information."; echo;␉␉␉\␊ |
| 611 | ␉␉rm -f .test.c .test.o; exit 1)␊ |
| 612 | ␉@printf "Checking if libpci is present and sufficient... "␊ |
| 613 | ␉@printf "" > .libdeps␊ |
| 614 | ␉@$(CC) $(LDFLAGS) .test.o -o .test$(EXEC_SUFFIX) $(LIBS) >/dev/null 2>&1 &&␉␉␉␉\␊ |
| 615 | ␉␉echo "yes." || ( echo "no.";␉␉␉␉␉␉␉\␊ |
| 616 | ␉␉printf "Checking if libz+libpci are present and sufficient...";␉\␊ |
| 617 | ␉␉$(CC) $(LDFLAGS) .test.o -o .test$(EXEC_SUFFIX) $(LIBS) -lz >/dev/null 2>&1 &&␉␉\␊ |
| 618 | ␉␉( echo "yes."; echo "NEEDLIBZ := yes" > .libdeps ) || ( echo "no."; echo;␉\␊ |
| 619 | ␉␉echo "Please install libpci (package pciutils) and/or libz.";␉␉␉\␊ |
| 620 | ␉␉echo "See README for more information."; echo;␉␉␉␉\␊ |
| 621 | ␉␉rm -f .test.c .test.o .test$(EXEC_SUFFIX); exit 1) )␊ |
| 622 | ␉@rm -f .test.c .test.o .test$(EXEC_SUFFIX)␊ |
| 623 | else␊ |
| 624 | pciutils: compiler␊ |
| 625 | ␉@printf "" > .libdeps␊ |
| 626 | endif␊ |
| 627 | ␊ |
| 628 | .features: features␊ |
| 629 | ␊ |
| 630 | # If a user does not explicitly request a non-working feature, we should␊ |
| 631 | # silently disable it. However, if a non-working (does not compile) feature␊ |
| 632 | # is explicitly requested, we should bail out with a descriptive error message.␊ |
| 633 | ifeq ($(UNSUPPORTED_FEATURES), )␊ |
| 634 | featuresavailable:␊ |
| 635 | else␊ |
| 636 | featuresavailable:␊ |
| 637 | ␉@echo "The following features are unavailable on your machine: $(UNSUPPORTED_FEATURES)"␊ |
| 638 | ␉@false␊ |
| 639 | endif␊ |
| 640 | ␊ |
| 641 | define FTDI_TEST␊ |
| 642 | #include <ftdi.h>␊ |
| 643 | struct ftdi_context *ftdic = NULL;␊ |
| 644 | int main(int argc, char **argv)␊ |
| 645 | {␊ |
| 646 | ␉(void) argc;␊ |
| 647 | ␉(void) argv;␊ |
| 648 | ␉return ftdi_init(ftdic);␊ |
| 649 | }␊ |
| 650 | endef␊ |
| 651 | export FTDI_TEST␊ |
| 652 | ␊ |
| 653 | define UTSNAME_TEST␊ |
| 654 | #include <sys/utsname.h>␊ |
| 655 | struct utsname osinfo;␊ |
| 656 | int main(int argc, char **argv)␊ |
| 657 | {␊ |
| 658 | ␉(void) argc;␊ |
| 659 | ␉(void) argv;␊ |
| 660 | ␉uname (&osinfo);␊ |
| 661 | ␉return 0;␊ |
| 662 | }␊ |
| 663 | endef␊ |
| 664 | export UTSNAME_TEST␊ |
| 665 | ␊ |
| 666 | features: compiler␊ |
| 667 | ␉@echo "FEATURES := yes" > .features.tmp␊ |
| 668 | ifeq ($(CONFIG_FT2232_SPI), yes)␊ |
| 669 | ␉@printf "Checking for FTDI support... "␊ |
| 670 | ␉@echo "$$FTDI_TEST" > .featuretest.c␊ |
| 671 | ␉@$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) $(FTDILIBS) $(LIBS) >/dev/null 2>&1 &&␉\␊ |
| 672 | ␉␉( echo "found."; echo "FTDISUPPORT := yes" >> .features.tmp ) ||␉\␊ |
| 673 | ␉␉( echo "not found."; echo "FTDISUPPORT := no" >> .features.tmp )␊ |
| 674 | endif␊ |
| 675 | ␉@printf "Checking for utsname support... "␊ |
| 676 | ␉@echo "$$UTSNAME_TEST" > .featuretest.c␊ |
| 677 | ␉@$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) >/dev/null 2>&1 &&␉\␊ |
| 678 | ␉␉( echo "found."; echo "UTSNAME := yes" >> .features.tmp ) ||␉\␊ |
| 679 | ␉␉( echo "not found."; echo "UTSNAME := no" >> .features.tmp )␊ |
| 680 | ␉@$(DIFF) -q .features.tmp .features >/dev/null 2>&1 && rm .features.tmp || mv .features.tmp .features␊ |
| 681 | ␉@rm -f .featuretest.c .featuretest$(EXEC_SUFFIX)␊ |
| 682 | ␊ |
| 683 | install: $(PROGRAM)$(EXEC_SUFFIX)␊ |
| 684 | ␉mkdir -p $(DESTDIR)$(PREFIX)/sbin␊ |
| 685 | ␉mkdir -p $(DESTDIR)$(MANDIR)/man8␊ |
| 686 | ␉$(INSTALL) -m 0755 $(PROGRAM)$(EXEC_SUFFIX) $(DESTDIR)$(PREFIX)/sbin␊ |
| 687 | ␉$(INSTALL) -m 0644 $(PROGRAM).8 $(DESTDIR)$(MANDIR)/man8␊ |
| 688 | ␊ |
| 689 | export:␊ |
| 690 | ␉@rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME)␊ |
| 691 | ␉@svn export -r BASE . $(EXPORTDIR)/flashrom-$(RELEASENAME)␊ |
| 692 | ␉@sed "s/^SVNVERSION.*/SVNVERSION := $(SVNVERSION)/" Makefile >$(EXPORTDIR)/flashrom-$(RELEASENAME)/Makefile␊ |
| 693 | ␉@LC_ALL=C svn log >$(EXPORTDIR)/flashrom-$(RELEASENAME)/ChangeLog␊ |
| 694 | ␉@echo Exported $(EXPORTDIR)/flashrom-$(RELEASENAME)/␊ |
| 695 | ␊ |
| 696 | tarball: export␊ |
| 697 | ␉@tar cjf $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2 -C $(EXPORTDIR)/ $(TAROPTIONS) flashrom-$(RELEASENAME)/␊ |
| 698 | ␉@rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME)␊ |
| 699 | ␉@echo Created $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2␊ |
| 700 | ␊ |
| 701 | djgpp-dos: clean␊ |
| 702 | ␉make CC=i586-pc-msdosdjgpp-gcc STRIP=i586-pc-msdosdjgpp-strip␊ |
| 703 | libpayload: clean␊ |
| 704 | ␉make CC="CC=i386-elf-gcc lpgcc" AR=i386-elf-ar RANLIB=i386-elf-ranlib␊ |
| 705 | ␊ |
| 706 | .PHONY: all clean distclean compiler pciutils features export tarball dos featuresavailable␊ |
| 707 | ␊ |
| 708 | -include $(OBJS:.o=.d)␊ |
| 709 | |