blob: 9c6ec7dccf0b2a40b5917bf1210fd1f88bc57f56 [file] [log] [blame]
Ollie Lho184a4042005-11-26 21:55:36 +00001#
Uwe Hermannf78cff12009-06-12 14:05:25 +00002# This file is part of the flashrom project.
3#
4# Copyright (C) 2005 coresystems GmbH <stepan@coresystems.de>
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +00005# Copyright (C) 2009,2010 Carl-Daniel Hailfinger
Uwe Hermannf78cff12009-06-12 14:05:25 +00006#
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 Lho184a4042005-11-26 21:55:36 +000019#
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000020
Ollie Lho184a4042005-11-26 21:55:36 +000021PROGRAM = flashrom
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000022
Uwe Hermannc2a9c9c2009-05-14 14:51:14 +000023CC ?= gcc
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +000024STRIP ?= strip
Christian Ruppertdb9d9f42009-05-14 14:17:07 +000025INSTALL = install
Paul Fox05dfbe62009-06-16 21:08:06 +000026DIFF = diff
Christian Ruppertdb9d9f42009-05-14 14:17:07 +000027PREFIX ?= /usr/local
Uwe Hermann56b2cb02009-05-21 15:59:58 +000028MANDIR ?= $(PREFIX)/share/man
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +000029CFLAGS ?= -Os -Wall -Wshadow
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +000030EXPORTDIR ?= .
Patrick Georgi97bc95c2011-03-08 07:17:44 +000031AR ?= ar
32RANLIB ?= ranlib
Christian Ruppertdb9d9f42009-05-14 14:17:07 +000033
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +000034WARNERROR ?= yes
35
36ifeq ($(WARNERROR), yes)
37CFLAGS += -Werror
38endif
39
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +000040# HOST_OS is only used to work around local toolchain issues.
41HOST_OS ?= $(shell uname)
42ifeq ($(HOST_OS), MINGW32_NT-5.1)
43# Explicitly set CC = gcc on MinGW, otherwise: "cc: command not found".
44CC = gcc
45endif
46ifneq ($(HOST_OS), SunOS)
Adam Kaufman064b1f22007-02-06 19:47:50 +000047STRIP_ARGS = -s
48endif
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +000049
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.
54override TARGET_OS := $(strip $(shell LC_ALL=C $(CC) $(CPPFLAGS) -E os.h 2>/dev/null | grep -v '^\#' | grep '"' | cut -f 2 -d'"'))
55
56ifeq ($(TARGET_OS), Darwin)
Stefan Reinauer2fea3f32010-01-21 20:26:30 +000057CPPFLAGS += -I/opt/local/include -I/usr/local/include
Stefan Reinauer83704c52011-03-18 22:00:15 +000058# DirectHW framework can be found in the DirectHW library.
59LDFLAGS += -framework IOKit -framework DirectHW -L/opt/local/lib -L/usr/local/lib
Stefan Reinauerf79edb92009-01-26 01:23:31 +000060endif
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +000061ifeq ($(TARGET_OS), FreeBSD)
Stefan Reinauer2fea3f32010-01-21 20:26:30 +000062CPPFLAGS += -I/usr/local/include
Andriy Gapon65c1b862008-05-22 13:22:45 +000063LDFLAGS += -L/usr/local/lib
64endif
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +000065ifeq ($(TARGET_OS), OpenBSD)
Carl-Daniel Hailfingerb63b0672010-07-02 17:12:50 +000066CPPFLAGS += -I/usr/local/include
67LDFLAGS += -L/usr/local/lib
68endif
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +000069ifeq ($(TARGET_OS), DOS)
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +000070EXEC_SUFFIX := .exe
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +000071CPPFLAGS += -I../libgetopt -I../libpci/include
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +000072# DJGPP has odd uint*_t definitions which cause lots of format string warnings.
73CPPFLAGS += -Wno-format
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +000074# FIXME Check if we can achieve the same effect with -L../libgetopt -lgetopt
75LIBS += ../libgetopt/libgetopt.a
Stefan Taunerd94d25d2012-07-28 03:17:15 +000076# Bus Pirate, Serprog and Pony-SPI are not supported under DOS (missing serial support).
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +000077ifeq ($(CONFIG_BUSPIRATE_SPI), yes)
78UNSUPPORTED_FEATURES += CONFIG_BUSPIRATE_SPI=yes
79else
80override CONFIG_BUSPIRATE_SPI = no
81endif
82ifeq ($(CONFIG_SERPROG), yes)
83UNSUPPORTED_FEATURES += CONFIG_SERPROG=yes
84else
85override CONFIG_SERPROG = no
86endif
Stefan Taunerd94d25d2012-07-28 03:17:15 +000087ifeq ($(CONFIG_PONY_SPI), yes)
88UNSUPPORTED_FEATURES += CONFIG_PONY_SPI=yes
89else
90override CONFIG_PONY_SPI = no
91endif
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +000092# Dediprog and FT2232 are not supported under DOS (missing USB support).
93ifeq ($(CONFIG_DEDIPROG), yes)
94UNSUPPORTED_FEATURES += CONFIG_DEDIPROG=yes
95else
96override CONFIG_DEDIPROG = no
97endif
98ifeq ($(CONFIG_FT2232_SPI), yes)
99UNSUPPORTED_FEATURES += CONFIG_FT2232_SPI=yes
100else
101override CONFIG_FT2232_SPI = no
102endif
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000103endif
Ollie Lho184a4042005-11-26 21:55:36 +0000104
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000105# FIXME: Should we check for Cygwin/MSVC as well?
106ifeq ($(TARGET_OS), MinGW)
107EXEC_SUFFIX := .exe
Uwe Hermannd5e85d62011-07-03 19:44:12 +0000108# MinGW doesn't have the ffs() function, but we can use gcc's __builtin_ffs().
109CFLAGS += -Dffs=__builtin_ffs
110# libusb-win32/libftdi stuff is usually installed in /usr/local.
111CPPFLAGS += -I/usr/local/include
112LDFLAGS += -L/usr/local/lib
113# Serprog is not supported under Windows/MinGW (missing sockets support).
114ifeq ($(CONFIG_SERPROG), yes)
115UNSUPPORTED_FEATURES += CONFIG_SERPROG=yes
116else
117override CONFIG_SERPROG = no
118endif
119# For now we disable all PCI-based programmers on Windows/MinGW (no libpci).
120ifeq ($(CONFIG_INTERNAL), yes)
121UNSUPPORTED_FEATURES += CONFIG_INTERNAL=yes
122else
123override CONFIG_INTERNAL = no
124endif
125ifeq ($(CONFIG_RAYER_SPI), yes)
126UNSUPPORTED_FEATURES += CONFIG_RAYER_SPI=yes
127else
128override CONFIG_RAYER_SPI = no
129endif
130ifeq ($(CONFIG_NIC3COM), yes)
131UNSUPPORTED_FEATURES += CONFIG_NIC3COM=yes
132else
133override CONFIG_NIC3COM = no
134endif
135ifeq ($(CONFIG_GFXNVIDIA), yes)
136UNSUPPORTED_FEATURES += CONFIG_GFXNVIDIA=yes
137else
138override CONFIG_GFXNVIDIA = no
139endif
140ifeq ($(CONFIG_SATASII), yes)
141UNSUPPORTED_FEATURES += CONFIG_SATASII=yes
142else
143override CONFIG_SATASII = no
144endif
145ifeq ($(CONFIG_ATAHPT), yes)
146UNSUPPORTED_FEATURES += CONFIG_ATAHPT=yes
147else
148override CONFIG_ATAHPT = no
149endif
150ifeq ($(CONFIG_DRKAISER), yes)
151UNSUPPORTED_FEATURES += CONFIG_DRKAISER=yes
152else
153override CONFIG_DRKAISER = no
154endif
155ifeq ($(CONFIG_NICREALTEK), yes)
156UNSUPPORTED_FEATURES += CONFIG_NICREALTEK=yes
157else
158override CONFIG_NICREALTEK = no
159endif
160ifeq ($(CONFIG_NICNATSEMI), yes)
161UNSUPPORTED_FEATURES += CONFIG_NICNATSEMI=yes
162else
163override CONFIG_NICNATSEMI = no
164endif
165ifeq ($(CONFIG_NICINTEL), yes)
166UNSUPPORTED_FEATURES += CONFIG_NICINTEL=yes
167else
168override CONFIG_NICINTEL = no
169endif
170ifeq ($(CONFIG_NICINTEL_SPI), yes)
171UNSUPPORTED_FEATURES += CONFIG_NICINTEL_SPI=yes
172else
173override CONFIG_NICINTEL_SPI = no
174endif
175ifeq ($(CONFIG_OGP_SPI), yes)
176UNSUPPORTED_FEATURES += CONFIG_OGP_SPI=yes
177else
178override CONFIG_OGP_SPI = no
179endif
180ifeq ($(CONFIG_SATAMV), yes)
181UNSUPPORTED_FEATURES += CONFIG_SATAMV=yes
182else
183override CONFIG_SATAMV = no
184endif
185endif
186
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000187ifeq ($(TARGET_OS), libpayload)
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000188CPPFLAGS += -DSTANDALONE
189ifeq ($(CONFIG_DUMMY), yes)
190UNSUPPORTED_FEATURES += CONFIG_DUMMY=yes
191else
192override CONFIG_DUMMY = no
193endif
194ifeq ($(CONFIG_BUSPIRATE_SPI), yes)
195UNSUPPORTED_FEATURES += CONFIG_BUSPIRATE_SPI=yes
196else
197override CONFIG_BUSPIRATE_SPI = no
198endif
199ifeq ($(CONFIG_SERPROG), yes)
200UNSUPPORTED_FEATURES += CONFIG_SERPROG=yes
201else
202override CONFIG_SERPROG = no
203endif
204# Dediprog and FT2232 are not supported with libpayload (missing libusb support)
205ifeq ($(CONFIG_DEDIPROG), yes)
206UNSUPPORTED_FEATURES += CONFIG_DEDIPROG=yes
207else
208override CONFIG_DEDIPROG = no
209endif
210ifeq ($(CONFIG_FT2232_SPI), yes)
211UNSUPPORTED_FEATURES += CONFIG_FT2232_SPI=yes
212else
213override CONFIG_FT2232_SPI = no
214endif
215endif
216
Carl-Daniel Hailfinger8541d232012-02-16 21:00:27 +0000217ifneq ($(TARGET_OS), Linux)
218ifeq ($(CONFIG_LINUX_SPI), yes)
219UNSUPPORTED_FEATURES += CONFIG_LINUX_SPI=yes
220else
221override CONFIG_LINUX_SPI = no
222endif
223endif
224
Uwe Hermann44ffd582011-08-20 14:16:00 +0000225# Determine the destination processor architecture.
226# IMPORTANT: The following line must be placed before ARCH is ever used
227# (of course), but should come after any lines setting CC because the line
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000228# below uses CC itself.
229override ARCH := $(strip $(shell LC_ALL=C $(CC) $(CPPFLAGS) -E arch.h 2>/dev/null | grep -v '^\#' | grep '"' | cut -f 2 -d'"'))
Uwe Hermann44ffd582011-08-20 14:16:00 +0000230
David Hendricksb286da72012-02-13 00:35:35 +0000231# PCI port I/O support is unimplemented on PPC/MIPS and unavailable on ARM.
232# Right now this means the drivers below only work on x86.
233ifneq ($(ARCH), x86)
Uwe Hermann21b10c62011-07-29 12:13:01 +0000234ifeq ($(CONFIG_NIC3COM), yes)
235UNSUPPORTED_FEATURES += CONFIG_NIC3COM=yes
236else
237override CONFIG_NIC3COM = no
238endif
239ifeq ($(CONFIG_NICREALTEK), yes)
240UNSUPPORTED_FEATURES += CONFIG_NICREALTEK=yes
241else
242override CONFIG_NICREALTEK = no
243endif
244ifeq ($(CONFIG_NICNATSEMI), yes)
245UNSUPPORTED_FEATURES += CONFIG_NICNATSEMI=yes
246else
247override CONFIG_NICNATSEMI = no
248endif
249ifeq ($(CONFIG_RAYER_SPI), yes)
250UNSUPPORTED_FEATURES += CONFIG_RAYER_SPI=yes
251else
252override CONFIG_RAYER_SPI = no
253endif
254ifeq ($(CONFIG_ATAHPT), yes)
255UNSUPPORTED_FEATURES += CONFIG_ATAHPT=yes
256else
257override CONFIG_ATAHPT = no
258endif
259ifeq ($(CONFIG_SATAMV), yes)
260UNSUPPORTED_FEATURES += CONFIG_SATAMV=yes
261else
262override CONFIG_SATAMV = no
263endif
264endif
265
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +0000266CHIP_OBJS = jedec.o stm50flw0x0x.o w39.o w29ee011.o \
Sean Nelson35727f72010-01-28 23:55:12 +0000267 sst28sf040.o m29f400bt.o 82802ab.o pm49fl00x.o \
Michael Karcher27c8c6c2012-05-16 00:15:53 +0000268 sst49lfxxxc.o sst_fwhub.o flashchips.o spi.o spi25.o \
Rudolf Marek47eff6b2012-04-14 22:51:40 +0000269 a25.o at25.o opaque.o sfdp.o en29lv640b.o
Sean Nelson5d134642009-12-24 16:54:21 +0000270
271LIB_OBJS = layout.o
272
Sean Nelson51e97d72010-01-07 20:09:33 +0000273CLI_OBJS = flashrom.o cli_classic.o cli_output.o print.o
Sean Nelson5d134642009-12-24 16:54:21 +0000274
Carl-Daniel Hailfingercc1802d2010-01-06 10:21:00 +0000275PROGRAMMER_OBJS = udelay.o programmer.o
Ollie Lho184a4042005-11-26 21:55:36 +0000276
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000277all: pciutils features $(PROGRAM)$(EXEC_SUFFIX)
Ollie Lho184a4042005-11-26 21:55:36 +0000278
Carl-Daniel Hailfinger9e675852009-05-04 12:29:59 +0000279# Set the flashrom version string from the highest revision number
280# of the checked out flashrom files.
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000281# Note to packagers: Any tree exported with "make export" or "make tarball"
282# will not require subversion. The downloadable snapshots are already exported.
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000283SVNVERSION := $(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 Hailfingera23041c2009-06-12 14:49:10 +0000284
Carl-Daniel Hailfinger62594072012-03-08 21:58:40 +0000285RELEASE := 0.9.5.2
Carl-Daniel Hailfinger48e5e092009-08-31 16:25:08 +0000286VERSION := $(RELEASE)-r$(SVNVERSION)
287RELEASENAME ?= $(VERSION)
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000288
289SVNDEF := -D'FLASHROM_VERSION="$(VERSION)"'
Bernhard Walle201bde32008-01-21 15:24:22 +0000290
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000291# Always enable internal/onboard support for now.
292CONFIG_INTERNAL ?= yes
293
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000294# Always enable serprog for now. Needs to be disabled on Windows.
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000295CONFIG_SERPROG ?= yes
296
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000297# RayeR SPIPGM hardware support
298CONFIG_RAYER_SPI ?= yes
299
Virgil-Adrian Teacada7c5452012-04-30 23:11:06 +0000300# PonyProg2000 SPI hardware support
301CONFIG_PONY_SPI ?= yes
302
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000303# Always enable 3Com NICs for now.
304CONFIG_NIC3COM ?= yes
305
Carl-Daniel Hailfingerbf3af292010-07-29 14:41:46 +0000306# Enable NVIDIA graphics cards. Note: write and erase do not work properly.
307CONFIG_GFXNVIDIA ?= yes
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000308
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000309# Always enable SiI SATA controllers for now.
310CONFIG_SATASII ?= yes
311
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000312# Highpoint (HPT) ATA/RAID controller support.
313# IMPORTANT: This code is not yet working!
314CONFIG_ATAHPT ?= no
315
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000316# Always enable FT2232 SPI dongles for now.
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000317CONFIG_FT2232_SPI ?= yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000318
319# Always enable dummy tracing for now.
320CONFIG_DUMMY ?= yes
321
322# Always enable Dr. Kaiser for now.
323CONFIG_DRKAISER ?= yes
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000324
Joerg Fischer5665ef32010-05-21 21:54:07 +0000325# Always enable Realtek NICs for now.
326CONFIG_NICREALTEK ?= yes
327
Andrew Morganc29c2e72010-06-07 22:37:54 +0000328# Disable National Semiconductor NICs until support is complete and tested.
329CONFIG_NICNATSEMI ?= no
330
Carl-Daniel Hailfingerb713d2e2011-05-08 00:24:18 +0000331# Always enable Intel NICs for now.
332CONFIG_NICINTEL ?= yes
333
Idwer Vollering004f4b72010-09-03 18:21:21 +0000334# Always enable SPI on Intel NICs for now.
335CONFIG_NICINTEL_SPI ?= yes
336
Mark Marshall90021f22010-12-03 14:48:11 +0000337# Always enable SPI on OGP cards for now.
338CONFIG_OGP_SPI ?= yes
339
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000340# Always enable Bus Pirate SPI for now.
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000341CONFIG_BUSPIRATE_SPI ?= yes
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000342
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000343# Disable Dediprog SF100 until support is complete and tested.
344CONFIG_DEDIPROG ?= no
345
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000346# Always enable Marvell SATA controllers for now.
347CONFIG_SATAMV ?= yes
348
Carl-Daniel Hailfinger8541d232012-02-16 21:00:27 +0000349# Enable Linux spidev interface by default. We disable it on non-Linux targets.
350CONFIG_LINUX_SPI ?= yes
351
Carl-Daniel Hailfinger6161ff12009-11-16 21:22:24 +0000352# Disable wiki printing by default. It is only useful if you have wiki access.
Uwe Hermann2db77a02010-06-04 17:07:39 +0000353CONFIG_PRINT_WIKI ?= no
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000354
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000355# Bitbanging SPI infrastructure, default off unless needed.
356ifeq ($(CONFIG_RAYER_SPI), yes)
357override CONFIG_BITBANG_SPI = yes
358else
Virgil-Adrian Teacada7c5452012-04-30 23:11:06 +0000359ifeq ($(CONFIG_PONY_SPI), yes)
360override CONFIG_BITBANG_SPI = yes
361else
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000362ifeq ($(CONFIG_INTERNAL), yes)
363override CONFIG_BITBANG_SPI = yes
364else
365ifeq ($(CONFIG_NICINTEL_SPI), yes)
366override CONFIG_BITBANG_SPI = yes
367else
Mark Marshall90021f22010-12-03 14:48:11 +0000368ifeq ($(CONFIG_OGP_SPI), yes)
369override CONFIG_BITBANG_SPI = yes
370else
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000371CONFIG_BITBANG_SPI ?= no
372endif
373endif
374endif
Mark Marshall90021f22010-12-03 14:48:11 +0000375endif
Virgil-Adrian Teacada7c5452012-04-30 23:11:06 +0000376endif
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000377
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000378ifeq ($(CONFIG_INTERNAL), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000379FEATURE_CFLAGS += -D'CONFIG_INTERNAL=1'
Carl-Daniel Hailfingerb5b161b2010-06-04 19:05:39 +0000380PROGRAMMER_OBJS += processor_enable.o chipset_enable.o board_enable.o cbtable.o dmi.o internal.o
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000381ifeq ($(ARCH), x86)
Stefan Tauner1e146392011-09-15 23:52:55 +0000382PROGRAMMER_OBJS += it87spi.o it85spi.o sb600spi.o wbsio_spi.o mcp6x_spi.o
383PROGRAMMER_OBJS += ichspi.o ich_descriptors.o
Carl-Daniel Hailfinger91199a12011-07-07 06:59:18 +0000384else
385endif
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000386NEED_PCI := yes
387endif
388
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000389ifeq ($(CONFIG_SERPROG), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000390FEATURE_CFLAGS += -D'CONFIG_SERPROG=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000391PROGRAMMER_OBJS += serprog.o
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000392NEED_SERIAL := yes
393NEED_NET := yes
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000394endif
395
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000396ifeq ($(CONFIG_RAYER_SPI), yes)
397FEATURE_CFLAGS += -D'CONFIG_RAYER_SPI=1'
398PROGRAMMER_OBJS += rayer_spi.o
399# Actually, NEED_PCI is wrong. NEED_IOPORT_ACCESS would be more correct.
400NEED_PCI := yes
401endif
402
Virgil-Adrian Teacada7c5452012-04-30 23:11:06 +0000403ifeq ($(CONFIG_PONY_SPI), yes)
404FEATURE_CFLAGS += -D'CONFIG_PONY_SPI=1'
405PROGRAMMER_OBJS += pony_spi.o
406NEED_SERIAL := yes
407endif
408
Carl-Daniel Hailfinger547872b2009-09-28 13:15:16 +0000409ifeq ($(CONFIG_BITBANG_SPI), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000410FEATURE_CFLAGS += -D'CONFIG_BITBANG_SPI=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000411PROGRAMMER_OBJS += bitbang_spi.o
Carl-Daniel Hailfinger547872b2009-09-28 13:15:16 +0000412endif
413
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000414ifeq ($(CONFIG_NIC3COM), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000415FEATURE_CFLAGS += -D'CONFIG_NIC3COM=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000416PROGRAMMER_OBJS += nic3com.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000417NEED_PCI := yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000418endif
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000419
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000420ifeq ($(CONFIG_GFXNVIDIA), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000421FEATURE_CFLAGS += -D'CONFIG_GFXNVIDIA=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000422PROGRAMMER_OBJS += gfxnvidia.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000423NEED_PCI := yes
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000424endif
425
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000426ifeq ($(CONFIG_SATASII), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000427FEATURE_CFLAGS += -D'CONFIG_SATASII=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000428PROGRAMMER_OBJS += satasii.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000429NEED_PCI := yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000430endif
431
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000432ifeq ($(CONFIG_ATAHPT), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000433FEATURE_CFLAGS += -D'CONFIG_ATAHPT=1'
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000434PROGRAMMER_OBJS += atahpt.o
435NEED_PCI := yes
436endif
437
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000438ifeq ($(CONFIG_FT2232_SPI), yes)
Carl-Daniel Hailfingerc1f00c52010-01-09 14:18:01 +0000439FTDILIBS := $(shell pkg-config --libs libftdi 2>/dev/null || printf "%s" "-lftdi -lusb")
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000440# This is a totally ugly hack.
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000441FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "FTDISUPPORT := yes" .features && printf "%s" "-D'CONFIG_FT2232_SPI=1'")
Jörg Mayer8776db22009-11-16 14:05:13 +0000442FEATURE_LIBS += $(shell LC_ALL=C grep -q "FTDISUPPORT := yes" .features && printf "%s" "$(FTDILIBS)")
Sean Nelson5d134642009-12-24 16:54:21 +0000443PROGRAMMER_OBJS += ft2232_spi.o
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000444endif
445
446ifeq ($(CONFIG_DUMMY), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000447FEATURE_CFLAGS += -D'CONFIG_DUMMY=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000448PROGRAMMER_OBJS += dummyflasher.o
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000449endif
450
451ifeq ($(CONFIG_DRKAISER), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000452FEATURE_CFLAGS += -D'CONFIG_DRKAISER=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000453PROGRAMMER_OBJS += drkaiser.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000454NEED_PCI := yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000455endif
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000456
Joerg Fischer5665ef32010-05-21 21:54:07 +0000457ifeq ($(CONFIG_NICREALTEK), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000458FEATURE_CFLAGS += -D'CONFIG_NICREALTEK=1'
Joerg Fischer5665ef32010-05-21 21:54:07 +0000459PROGRAMMER_OBJS += nicrealtek.o
460NEED_PCI := yes
461endif
462
Andrew Morganc29c2e72010-06-07 22:37:54 +0000463ifeq ($(CONFIG_NICNATSEMI), yes)
464FEATURE_CFLAGS += -D'CONFIG_NICNATSEMI=1'
465PROGRAMMER_OBJS += nicnatsemi.o
466NEED_PCI := yes
467endif
468
Carl-Daniel Hailfingerb713d2e2011-05-08 00:24:18 +0000469ifeq ($(CONFIG_NICINTEL), yes)
470FEATURE_CFLAGS += -D'CONFIG_NICINTEL=1'
471PROGRAMMER_OBJS += nicintel.o
472NEED_PCI := yes
473endif
474
Idwer Vollering004f4b72010-09-03 18:21:21 +0000475ifeq ($(CONFIG_NICINTEL_SPI), yes)
476FEATURE_CFLAGS += -D'CONFIG_NICINTEL_SPI=1'
477PROGRAMMER_OBJS += nicintel_spi.o
478NEED_PCI := yes
479endif
480
Mark Marshall90021f22010-12-03 14:48:11 +0000481ifeq ($(CONFIG_OGP_SPI), yes)
482FEATURE_CFLAGS += -D'CONFIG_OGP_SPI=1'
483PROGRAMMER_OBJS += ogp_spi.o
484NEED_PCI := yes
485endif
486
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000487ifeq ($(CONFIG_BUSPIRATE_SPI), yes)
488FEATURE_CFLAGS += -D'CONFIG_BUSPIRATE_SPI=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000489PROGRAMMER_OBJS += buspirate_spi.o
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000490NEED_SERIAL := yes
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000491endif
492
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000493ifeq ($(CONFIG_DEDIPROG), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000494FEATURE_CFLAGS += -D'CONFIG_DEDIPROG=1'
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000495FEATURE_LIBS += -lusb
496PROGRAMMER_OBJS += dediprog.o
497endif
498
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000499ifeq ($(CONFIG_SATAMV), yes)
500FEATURE_CFLAGS += -D'CONFIG_SATAMV=1'
501PROGRAMMER_OBJS += satamv.o
502NEED_PCI := yes
503endif
504
Carl-Daniel Hailfinger8541d232012-02-16 21:00:27 +0000505ifeq ($(CONFIG_LINUX_SPI), yes)
Stefan Tauner8868db32012-03-13 00:18:19 +0000506# This is a totally ugly hack.
507FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "LINUX_SPI_SUPPORT := yes" .features && printf "%s" "-D'CONFIG_LINUX_SPI=1'")
Carl-Daniel Hailfinger8541d232012-02-16 21:00:27 +0000508PROGRAMMER_OBJS += linux_spi.o
509endif
510
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000511ifeq ($(NEED_SERIAL), yes)
Sean Nelson5d134642009-12-24 16:54:21 +0000512LIB_OBJS += serial.o
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000513endif
514
515ifeq ($(NEED_NET), yes)
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000516ifeq ($(TARGET_OS), SunOS)
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000517LIBS += -lsocket
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000518endif
Carl-Daniel Hailfingere51ea102009-11-23 19:20:11 +0000519endif
520
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000521ifeq ($(NEED_PCI), yes)
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000522CHECK_LIBPCI = yes
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000523FEATURE_CFLAGS += -D'NEED_PCI=1'
Carl-Daniel Hailfingerfb0828f2010-02-12 19:35:25 +0000524PROGRAMMER_OBJS += pcidev.o physmap.o hwaccess.o
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000525ifeq ($(TARGET_OS), NetBSD)
Carl-Daniel Hailfinger460b2822010-06-04 23:24:57 +0000526# The libpci we want is called libpciutils on NetBSD and needs NetBSD libpci.
527LIBS += -lpciutils -lpci
528# For (i386|x86_64)_iopl(2).
529LIBS += -l$(shell uname -p)
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000530else
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000531ifeq ($(TARGET_OS), DOS)
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000532# FIXME There needs to be a better way to do this
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000533LIBS += ../libpci/lib/libpci.a
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000534else
535LIBS += -lpci
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000536ifeq ($(TARGET_OS), OpenBSD)
Carl-Daniel Hailfingerb63b0672010-07-02 17:12:50 +0000537# For (i386|amd64)_iopl(2).
538LIBS += -l$(shell uname -m)
539endif
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000540endif
Jonathan A. Kollasch3646c8f2010-01-08 21:18:08 +0000541endif
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000542endif
543
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000544ifeq ($(CONFIG_PRINT_WIKI), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000545FEATURE_CFLAGS += -D'CONFIG_PRINT_WIKI=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000546CLI_OBJS += print_wiki.o
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000547endif
548
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +0000549FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "UTSNAME := yes" .features && printf "%s" "-D'HAVE_UTSNAME=1'")
550
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000551# We could use PULLED_IN_LIBS, but that would be ugly.
552FEATURE_LIBS += $(shell LC_ALL=C grep -q "NEEDLIBZ := yes" .libdeps && printf "%s" "-lz")
553
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000554LIBFLASHROM_OBJS = $(CHIP_OBJS) $(PROGRAMMER_OBJS) $(LIB_OBJS)
Stefan Taunerd94d25d2012-07-28 03:17:15 +0000555OBJS = $(CLI_OBJS) $(LIBFLASHROM_OBJS)
Sean Nelson5d134642009-12-24 16:54:21 +0000556
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000557$(PROGRAM)$(EXEC_SUFFIX): $(OBJS)
558 $(CC) $(LDFLAGS) -o $(PROGRAM)$(EXEC_SUFFIX) $(OBJS) $(FEATURE_LIBS) $(LIBS)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000559
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000560libflashrom.a: $(LIBFLASHROM_OBJS)
561 $(AR) rcs $@ $^
562 $(RANLIB) $@
563
Carl-Daniel Hailfinger8ef7dce2009-07-10 20:19:48 +0000564# TAROPTIONS reduces information leakage from the packager's system.
565# If other tar programs support command line arguments for setting uid/gid of
566# stored files, they can be handled here as well.
567TAROPTIONS = $(shell LC_ALL=C tar --version|grep -q GNU && echo "--owner=root --group=root")
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000568
Paul Fox05dfbe62009-06-16 21:08:06 +0000569%.o: %.c .features
Stefan Reinauere2f01582010-06-07 11:08:07 +0000570 $(CC) -MMD $(CFLAGS) $(CPPFLAGS) $(FEATURE_CFLAGS) $(SVNDEF) -o $@ -c $<
Clark Rawlins02016f72008-02-14 23:22:20 +0000571
Carl-Daniel Hailfingera0020df2010-05-30 22:35:14 +0000572# Make sure to add all names of generated binaries here.
573# This includes all frontends and libflashrom.
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000574# We don't use EXEC_SUFFIX here because we want to clean everything.
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000575clean:
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000576 rm -f $(PROGRAM) $(PROGRAM).exe libflashrom.a *.o *.d
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000577
Ollie Lho184a4042005-11-26 21:55:36 +0000578distclean: clean
Stefan Reinauere2f01582010-06-07 11:08:07 +0000579 rm -f .features .libdeps
Christian Ruppertdb9d9f42009-05-14 14:17:07 +0000580
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000581strip: $(PROGRAM)$(EXEC_SUFFIX)
582 $(STRIP) $(STRIP_ARGS) $(PROGRAM)$(EXEC_SUFFIX)
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000583
Stefan Tauner56787082011-08-18 02:27:19 +0000584# to define test programs we use verbatim variables, which get exported
585# to environment variables and are referenced with $$<varname> later
586
587define COMPILER_TEST
588int main(int argc, char **argv)
589{
590 (void) argc;
591 (void) argv;
592 return 0;
593}
594endef
595export COMPILER_TEST
596
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000597compiler: featuresavailable
Paul Fox05dfbe62009-06-16 21:08:06 +0000598 @printf "Checking for a C compiler... "
Stefan Tauner56787082011-08-18 02:27:19 +0000599 @echo "$$COMPILER_TEST" > .test.c
600 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .test.c -o .test$(EXEC_SUFFIX) >/dev/null 2>&1 && \
Carl-Daniel Hailfinger4cb7a962009-06-16 09:31:51 +0000601 echo "found." || ( echo "not found."; \
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000602 rm -f .test.c .test$(EXEC_SUFFIX); exit 1)
603 @rm -f .test.c .test$(EXEC_SUFFIX)
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000604 @printf "Target arch is "
Carl-Daniel Hailfinger91199a12011-07-07 06:59:18 +0000605 @# FreeBSD wc will output extraneous whitespace.
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000606 @echo $(ARCH)|wc -w|grep -q '^[[:blank:]]*1[[:blank:]]*$$' || \
Carl-Daniel Hailfinger91199a12011-07-07 06:59:18 +0000607 ( echo "unknown. Aborting."; exit 1)
608 @printf "%s\n" '$(ARCH)'
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000609 @printf "Target OS is "
610 @# FreeBSD wc will output extraneous whitespace.
611 @echo $(TARGET_OS)|wc -w|grep -q '^[[:blank:]]*1[[:blank:]]*$$' || \
612 ( echo "unknown. Aborting."; exit 1)
613 @printf "%s\n" '$(TARGET_OS)'
Carl-Daniel Hailfinger4cb7a962009-06-16 09:31:51 +0000614
Stefan Tauner56787082011-08-18 02:27:19 +0000615define LIBPCI_TEST
616/* Avoid a failing test due to libpci header symbol shadowing breakage */
617#define index shadow_workaround_index
618#include <pci/pci.h>
619struct pci_access *pacc;
620int main(int argc, char **argv)
621{
622 (void) argc;
623 (void) argv;
624 pacc = pci_alloc();
625 return 0;
626}
627endef
628export LIBPCI_TEST
629
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000630ifeq ($(CHECK_LIBPCI), yes)
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000631pciutils: compiler
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000632 @printf "Checking for libpci headers... "
Stefan Tauner56787082011-08-18 02:27:19 +0000633 @echo "$$LIBPCI_TEST" > .test.c
Stefan Reinauer2fea3f32010-01-21 20:26:30 +0000634 @$(CC) -c $(CPPFLAGS) $(CFLAGS) .test.c -o .test.o >/dev/null 2>&1 && \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000635 echo "found." || ( echo "not found."; echo; \
636 echo "Please install libpci headers (package pciutils-devel)."; \
637 echo "See README for more information."; echo; \
638 rm -f .test.c .test.o; exit 1)
Carl-Daniel Hailfinger9979eac2010-03-22 12:29:45 +0000639 @printf "Checking if libpci is present and sufficient... "
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000640 @printf "" > .libdeps
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000641 @$(CC) $(LDFLAGS) .test.o -o .test$(EXEC_SUFFIX) $(LIBS) >/dev/null 2>&1 && \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000642 echo "yes." || ( echo "no."; \
Carl-Daniel Hailfinger9979eac2010-03-22 12:29:45 +0000643 printf "Checking if libz+libpci are present and sufficient..."; \
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000644 $(CC) $(LDFLAGS) .test.o -o .test$(EXEC_SUFFIX) $(LIBS) -lz >/dev/null 2>&1 && \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000645 ( echo "yes."; echo "NEEDLIBZ := yes" > .libdeps ) || ( echo "no."; echo; \
Carl-Daniel Hailfinger9979eac2010-03-22 12:29:45 +0000646 echo "Please install libpci (package pciutils) and/or libz."; \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000647 echo "See README for more information."; echo; \
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000648 rm -f .test.c .test.o .test$(EXEC_SUFFIX); exit 1) )
649 @rm -f .test.c .test.o .test$(EXEC_SUFFIX)
Carl-Daniel Hailfinger8a59ff02009-12-24 03:33:11 +0000650else
651pciutils: compiler
652 @printf "" > .libdeps
653endif
Stefan Reinauer53e96252005-12-01 16:19:24 +0000654
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000655.features: features
656
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000657# If a user does not explicitly request a non-working feature, we should
658# silently disable it. However, if a non-working (does not compile) feature
659# is explicitly requested, we should bail out with a descriptive error message.
660ifeq ($(UNSUPPORTED_FEATURES), )
661featuresavailable:
662else
663featuresavailable:
664 @echo "The following features are unavailable on your machine: $(UNSUPPORTED_FEATURES)"
665 @false
666endif
667
Stefan Tauner56787082011-08-18 02:27:19 +0000668define FTDI_TEST
669#include <ftdi.h>
670struct ftdi_context *ftdic = NULL;
671int main(int argc, char **argv)
672{
673 (void) argc;
674 (void) argv;
675 return ftdi_init(ftdic);
676}
677endef
678export FTDI_TEST
679
680define UTSNAME_TEST
681#include <sys/utsname.h>
682struct utsname osinfo;
683int main(int argc, char **argv)
684{
685 (void) argc;
686 (void) argv;
687 uname (&osinfo);
688 return 0;
689}
690endef
691export UTSNAME_TEST
692
Stefan Tauner8868db32012-03-13 00:18:19 +0000693define LINUX_SPI_TEST
694#include <linux/types.h>
695#include <linux/spi/spidev.h>
696
697int main(int argc, char **argv)
698{
699 (void) argc;
700 (void) argv;
701 return 0;
702}
703endef
704export LINUX_SPI_TEST
705
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000706features: compiler
707 @echo "FEATURES := yes" > .features.tmp
Stefan Tauner56787082011-08-18 02:27:19 +0000708ifeq ($(CONFIG_FT2232_SPI), yes)
Paul Fox05dfbe62009-06-16 21:08:06 +0000709 @printf "Checking for FTDI support... "
Stefan Tauner56787082011-08-18 02:27:19 +0000710 @echo "$$FTDI_TEST" > .featuretest.c
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000711 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) $(FTDILIBS) $(LIBS) >/dev/null 2>&1 && \
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000712 ( echo "found."; echo "FTDISUPPORT := yes" >> .features.tmp ) || \
713 ( echo "not found."; echo "FTDISUPPORT := no" >> .features.tmp )
Carl-Daniel Hailfinger8a59ff02009-12-24 03:33:11 +0000714endif
Stefan Tauner8868db32012-03-13 00:18:19 +0000715ifeq ($(CONFIG_LINUX_SPI), yes)
716 @printf "Checking if Linux SPI headers are present... "
717 @echo "$$LINUX_SPI_TEST" > .featuretest.c
718 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) >/dev/null 2>&1 && \
719 ( echo "yes."; echo "LINUX_SPI_SUPPORT := yes" >> .features.tmp ) || \
720 ( echo "no."; echo "LINUX_SPI_SUPPORT := no" >> .features.tmp )
721endif
Stefan Tauner56787082011-08-18 02:27:19 +0000722 @printf "Checking for utsname support... "
723 @echo "$$UTSNAME_TEST" > .featuretest.c
724 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) >/dev/null 2>&1 && \
725 ( echo "found."; echo "UTSNAME := yes" >> .features.tmp ) || \
726 ( echo "not found."; echo "UTSNAME := no" >> .features.tmp )
727 @$(DIFF) -q .features.tmp .features >/dev/null 2>&1 && rm .features.tmp || mv .features.tmp .features
728 @rm -f .featuretest.c .featuretest$(EXEC_SUFFIX)
Paul Fox05dfbe62009-06-16 21:08:06 +0000729
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000730install: $(PROGRAM)$(EXEC_SUFFIX)
Uwe Hermannc2a9c9c2009-05-14 14:51:14 +0000731 mkdir -p $(DESTDIR)$(PREFIX)/sbin
Uwe Hermann56b2cb02009-05-21 15:59:58 +0000732 mkdir -p $(DESTDIR)$(MANDIR)/man8
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000733 $(INSTALL) -m 0755 $(PROGRAM)$(EXEC_SUFFIX) $(DESTDIR)$(PREFIX)/sbin
Uwe Hermann56b2cb02009-05-21 15:59:58 +0000734 $(INSTALL) -m 0644 $(PROGRAM).8 $(DESTDIR)$(MANDIR)/man8
Uwe Hermannc113b572006-12-14 00:59:41 +0000735
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000736export:
Carl-Daniel Hailfinger48e5e092009-08-31 16:25:08 +0000737 @rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME)
738 @svn export -r BASE . $(EXPORTDIR)/flashrom-$(RELEASENAME)
739 @sed "s/^SVNVERSION.*/SVNVERSION := $(SVNVERSION)/" Makefile >$(EXPORTDIR)/flashrom-$(RELEASENAME)/Makefile
740 @LC_ALL=C svn log >$(EXPORTDIR)/flashrom-$(RELEASENAME)/ChangeLog
741 @echo Exported $(EXPORTDIR)/flashrom-$(RELEASENAME)/
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000742
743tarball: export
Carl-Daniel Hailfinger48e5e092009-08-31 16:25:08 +0000744 @tar cjf $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2 -C $(EXPORTDIR)/ $(TAROPTIONS) flashrom-$(RELEASENAME)/
745 @rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME)
746 @echo Created $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000747
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000748djgpp-dos: clean
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000749 make CC=i586-pc-msdosdjgpp-gcc STRIP=i586-pc-msdosdjgpp-strip
750libpayload: clean
751 make CC="CC=i386-elf-gcc lpgcc" AR=i386-elf-ar RANLIB=i386-elf-ranlib
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000752
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000753.PHONY: all clean distclean compiler pciutils features export tarball dos featuresavailable
Ollie Lho184a4042005-11-26 21:55:36 +0000754
Stefan Reinauere2f01582010-06-07 11:08:07 +0000755-include $(OBJS:.o=.d)