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