blob: d98a594da518b1ed03cdb453b439d65c677ed156 [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
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +000076# Bus Pirate and Serprog are not supported under DOS (missing serial support).
77ifeq ($(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
87# Dediprog and FT2232 are not supported under DOS (missing USB support).
88ifeq ($(CONFIG_DEDIPROG), yes)
89UNSUPPORTED_FEATURES += CONFIG_DEDIPROG=yes
90else
91override CONFIG_DEDIPROG = no
92endif
93ifeq ($(CONFIG_FT2232_SPI), yes)
94UNSUPPORTED_FEATURES += CONFIG_FT2232_SPI=yes
95else
96override CONFIG_FT2232_SPI = no
97endif
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +000098endif
Ollie Lho184a4042005-11-26 21:55:36 +000099
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000100# FIXME: Should we check for Cygwin/MSVC as well?
101ifeq ($(TARGET_OS), MinGW)
102EXEC_SUFFIX := .exe
Uwe Hermannd5e85d62011-07-03 19:44:12 +0000103# MinGW doesn't have the ffs() function, but we can use gcc's __builtin_ffs().
104CFLAGS += -Dffs=__builtin_ffs
105# libusb-win32/libftdi stuff is usually installed in /usr/local.
106CPPFLAGS += -I/usr/local/include
107LDFLAGS += -L/usr/local/lib
108# Serprog is not supported under Windows/MinGW (missing sockets support).
109ifeq ($(CONFIG_SERPROG), yes)
110UNSUPPORTED_FEATURES += CONFIG_SERPROG=yes
111else
112override CONFIG_SERPROG = no
113endif
114# For now we disable all PCI-based programmers on Windows/MinGW (no libpci).
115ifeq ($(CONFIG_INTERNAL), yes)
116UNSUPPORTED_FEATURES += CONFIG_INTERNAL=yes
117else
118override CONFIG_INTERNAL = no
119endif
120ifeq ($(CONFIG_RAYER_SPI), yes)
121UNSUPPORTED_FEATURES += CONFIG_RAYER_SPI=yes
122else
123override CONFIG_RAYER_SPI = no
124endif
125ifeq ($(CONFIG_NIC3COM), yes)
126UNSUPPORTED_FEATURES += CONFIG_NIC3COM=yes
127else
128override CONFIG_NIC3COM = no
129endif
130ifeq ($(CONFIG_GFXNVIDIA), yes)
131UNSUPPORTED_FEATURES += CONFIG_GFXNVIDIA=yes
132else
133override CONFIG_GFXNVIDIA = no
134endif
135ifeq ($(CONFIG_SATASII), yes)
136UNSUPPORTED_FEATURES += CONFIG_SATASII=yes
137else
138override CONFIG_SATASII = no
139endif
140ifeq ($(CONFIG_ATAHPT), yes)
141UNSUPPORTED_FEATURES += CONFIG_ATAHPT=yes
142else
143override CONFIG_ATAHPT = no
144endif
145ifeq ($(CONFIG_DRKAISER), yes)
146UNSUPPORTED_FEATURES += CONFIG_DRKAISER=yes
147else
148override CONFIG_DRKAISER = no
149endif
150ifeq ($(CONFIG_NICREALTEK), yes)
151UNSUPPORTED_FEATURES += CONFIG_NICREALTEK=yes
152else
153override CONFIG_NICREALTEK = no
154endif
155ifeq ($(CONFIG_NICNATSEMI), yes)
156UNSUPPORTED_FEATURES += CONFIG_NICNATSEMI=yes
157else
158override CONFIG_NICNATSEMI = no
159endif
160ifeq ($(CONFIG_NICINTEL), yes)
161UNSUPPORTED_FEATURES += CONFIG_NICINTEL=yes
162else
163override CONFIG_NICINTEL = no
164endif
165ifeq ($(CONFIG_NICINTEL_SPI), yes)
166UNSUPPORTED_FEATURES += CONFIG_NICINTEL_SPI=yes
167else
168override CONFIG_NICINTEL_SPI = no
169endif
170ifeq ($(CONFIG_OGP_SPI), yes)
171UNSUPPORTED_FEATURES += CONFIG_OGP_SPI=yes
172else
173override CONFIG_OGP_SPI = no
174endif
175ifeq ($(CONFIG_SATAMV), yes)
176UNSUPPORTED_FEATURES += CONFIG_SATAMV=yes
177else
178override CONFIG_SATAMV = no
179endif
180endif
181
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000182ifeq ($(TARGET_OS), libpayload)
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000183CPPFLAGS += -DSTANDALONE
184ifeq ($(CONFIG_DUMMY), yes)
185UNSUPPORTED_FEATURES += CONFIG_DUMMY=yes
186else
187override CONFIG_DUMMY = no
188endif
189ifeq ($(CONFIG_BUSPIRATE_SPI), yes)
190UNSUPPORTED_FEATURES += CONFIG_BUSPIRATE_SPI=yes
191else
192override CONFIG_BUSPIRATE_SPI = no
193endif
194ifeq ($(CONFIG_SERPROG), yes)
195UNSUPPORTED_FEATURES += CONFIG_SERPROG=yes
196else
197override CONFIG_SERPROG = no
198endif
199# Dediprog and FT2232 are not supported with libpayload (missing libusb support)
200ifeq ($(CONFIG_DEDIPROG), yes)
201UNSUPPORTED_FEATURES += CONFIG_DEDIPROG=yes
202else
203override CONFIG_DEDIPROG = no
204endif
205ifeq ($(CONFIG_FT2232_SPI), yes)
206UNSUPPORTED_FEATURES += CONFIG_FT2232_SPI=yes
207else
208override CONFIG_FT2232_SPI = no
209endif
210endif
211
Carl-Daniel Hailfinger8541d232012-02-16 21:00:27 +0000212ifneq ($(TARGET_OS), Linux)
213ifeq ($(CONFIG_LINUX_SPI), yes)
214UNSUPPORTED_FEATURES += CONFIG_LINUX_SPI=yes
215else
216override CONFIG_LINUX_SPI = no
217endif
218endif
219
Uwe Hermann44ffd582011-08-20 14:16:00 +0000220# Determine the destination processor architecture.
221# IMPORTANT: The following line must be placed before ARCH is ever used
222# (of course), but should come after any lines setting CC because the line
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000223# below uses CC itself.
224override 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 +0000225
David Hendricksb286da72012-02-13 00:35:35 +0000226# PCI port I/O support is unimplemented on PPC/MIPS and unavailable on ARM.
227# Right now this means the drivers below only work on x86.
228ifneq ($(ARCH), x86)
Uwe Hermann21b10c62011-07-29 12:13:01 +0000229ifeq ($(CONFIG_NIC3COM), yes)
230UNSUPPORTED_FEATURES += CONFIG_NIC3COM=yes
231else
232override CONFIG_NIC3COM = no
233endif
234ifeq ($(CONFIG_NICREALTEK), yes)
235UNSUPPORTED_FEATURES += CONFIG_NICREALTEK=yes
236else
237override CONFIG_NICREALTEK = no
238endif
239ifeq ($(CONFIG_NICNATSEMI), yes)
240UNSUPPORTED_FEATURES += CONFIG_NICNATSEMI=yes
241else
242override CONFIG_NICNATSEMI = no
243endif
244ifeq ($(CONFIG_RAYER_SPI), yes)
245UNSUPPORTED_FEATURES += CONFIG_RAYER_SPI=yes
246else
247override CONFIG_RAYER_SPI = no
248endif
249ifeq ($(CONFIG_ATAHPT), yes)
250UNSUPPORTED_FEATURES += CONFIG_ATAHPT=yes
251else
252override CONFIG_ATAHPT = no
253endif
254ifeq ($(CONFIG_SATAMV), yes)
255UNSUPPORTED_FEATURES += CONFIG_SATAMV=yes
256else
257override CONFIG_SATAMV = no
258endif
259endif
260
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +0000261CHIP_OBJS = jedec.o stm50flw0x0x.o w39.o w29ee011.o \
Sean Nelson35727f72010-01-28 23:55:12 +0000262 sst28sf040.o m29f400bt.o 82802ab.o pm49fl00x.o \
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +0000263 sst49lfxxxc.o sst_fwhub.o flashchips.o spi.o spi25.o sharplhf00l04.o \
Rudolf Marek47eff6b2012-04-14 22:51:40 +0000264 a25.o at25.o opaque.o sfdp.o en29lv640b.o
Sean Nelson5d134642009-12-24 16:54:21 +0000265
266LIB_OBJS = layout.o
267
Sean Nelson51e97d72010-01-07 20:09:33 +0000268CLI_OBJS = flashrom.o cli_classic.o cli_output.o print.o
Sean Nelson5d134642009-12-24 16:54:21 +0000269
Carl-Daniel Hailfingercc1802d2010-01-06 10:21:00 +0000270PROGRAMMER_OBJS = udelay.o programmer.o
Ollie Lho184a4042005-11-26 21:55:36 +0000271
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000272all: pciutils features $(PROGRAM)$(EXEC_SUFFIX)
Ollie Lho184a4042005-11-26 21:55:36 +0000273
Carl-Daniel Hailfinger9e675852009-05-04 12:29:59 +0000274# Set the flashrom version string from the highest revision number
275# of the checked out flashrom files.
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000276# Note to packagers: Any tree exported with "make export" or "make tarball"
277# will not require subversion. The downloadable snapshots are already exported.
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000278SVNVERSION := $(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 +0000279
Carl-Daniel Hailfinger62594072012-03-08 21:58:40 +0000280RELEASE := 0.9.5.2
Carl-Daniel Hailfinger48e5e092009-08-31 16:25:08 +0000281VERSION := $(RELEASE)-r$(SVNVERSION)
282RELEASENAME ?= $(VERSION)
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000283
284SVNDEF := -D'FLASHROM_VERSION="$(VERSION)"'
Bernhard Walle201bde32008-01-21 15:24:22 +0000285
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000286# Always enable internal/onboard support for now.
287CONFIG_INTERNAL ?= yes
288
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000289# Always enable serprog for now. Needs to be disabled on Windows.
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000290CONFIG_SERPROG ?= yes
291
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000292# RayeR SPIPGM hardware support
293CONFIG_RAYER_SPI ?= yes
294
Virgil-Adrian Teacada7c5452012-04-30 23:11:06 +0000295# PonyProg2000 SPI hardware support
296CONFIG_PONY_SPI ?= yes
297
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000298# Always enable 3Com NICs for now.
299CONFIG_NIC3COM ?= yes
300
Carl-Daniel Hailfingerbf3af292010-07-29 14:41:46 +0000301# Enable NVIDIA graphics cards. Note: write and erase do not work properly.
302CONFIG_GFXNVIDIA ?= yes
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000303
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000304# Always enable SiI SATA controllers for now.
305CONFIG_SATASII ?= yes
306
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000307# Highpoint (HPT) ATA/RAID controller support.
308# IMPORTANT: This code is not yet working!
309CONFIG_ATAHPT ?= no
310
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000311# Always enable FT2232 SPI dongles for now.
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000312CONFIG_FT2232_SPI ?= yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000313
314# Always enable dummy tracing for now.
315CONFIG_DUMMY ?= yes
316
317# Always enable Dr. Kaiser for now.
318CONFIG_DRKAISER ?= yes
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000319
Joerg Fischer5665ef32010-05-21 21:54:07 +0000320# Always enable Realtek NICs for now.
321CONFIG_NICREALTEK ?= yes
322
Andrew Morganc29c2e72010-06-07 22:37:54 +0000323# Disable National Semiconductor NICs until support is complete and tested.
324CONFIG_NICNATSEMI ?= no
325
Carl-Daniel Hailfingerb713d2e2011-05-08 00:24:18 +0000326# Always enable Intel NICs for now.
327CONFIG_NICINTEL ?= yes
328
Idwer Vollering004f4b72010-09-03 18:21:21 +0000329# Always enable SPI on Intel NICs for now.
330CONFIG_NICINTEL_SPI ?= yes
331
Mark Marshall90021f22010-12-03 14:48:11 +0000332# Always enable SPI on OGP cards for now.
333CONFIG_OGP_SPI ?= yes
334
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000335# Always enable Bus Pirate SPI for now.
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000336CONFIG_BUSPIRATE_SPI ?= yes
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000337
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000338# Disable Dediprog SF100 until support is complete and tested.
339CONFIG_DEDIPROG ?= no
340
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000341# Always enable Marvell SATA controllers for now.
342CONFIG_SATAMV ?= yes
343
Carl-Daniel Hailfinger8541d232012-02-16 21:00:27 +0000344# Enable Linux spidev interface by default. We disable it on non-Linux targets.
345CONFIG_LINUX_SPI ?= yes
346
Carl-Daniel Hailfinger6161ff12009-11-16 21:22:24 +0000347# Disable wiki printing by default. It is only useful if you have wiki access.
Uwe Hermann2db77a02010-06-04 17:07:39 +0000348CONFIG_PRINT_WIKI ?= no
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000349
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000350# Bitbanging SPI infrastructure, default off unless needed.
351ifeq ($(CONFIG_RAYER_SPI), yes)
352override CONFIG_BITBANG_SPI = yes
353else
Virgil-Adrian Teacada7c5452012-04-30 23:11:06 +0000354ifeq ($(CONFIG_PONY_SPI), yes)
355override CONFIG_BITBANG_SPI = yes
356else
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000357ifeq ($(CONFIG_INTERNAL), yes)
358override CONFIG_BITBANG_SPI = yes
359else
360ifeq ($(CONFIG_NICINTEL_SPI), yes)
361override CONFIG_BITBANG_SPI = yes
362else
Mark Marshall90021f22010-12-03 14:48:11 +0000363ifeq ($(CONFIG_OGP_SPI), yes)
364override CONFIG_BITBANG_SPI = yes
365else
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000366CONFIG_BITBANG_SPI ?= no
367endif
368endif
369endif
Mark Marshall90021f22010-12-03 14:48:11 +0000370endif
Virgil-Adrian Teacada7c5452012-04-30 23:11:06 +0000371endif
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000372
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000373ifeq ($(CONFIG_INTERNAL), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000374FEATURE_CFLAGS += -D'CONFIG_INTERNAL=1'
Carl-Daniel Hailfingerb5b161b2010-06-04 19:05:39 +0000375PROGRAMMER_OBJS += processor_enable.o chipset_enable.o board_enable.o cbtable.o dmi.o internal.o
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000376ifeq ($(ARCH), x86)
Stefan Tauner1e146392011-09-15 23:52:55 +0000377PROGRAMMER_OBJS += it87spi.o it85spi.o sb600spi.o wbsio_spi.o mcp6x_spi.o
378PROGRAMMER_OBJS += ichspi.o ich_descriptors.o
Carl-Daniel Hailfinger91199a12011-07-07 06:59:18 +0000379else
380endif
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000381NEED_PCI := yes
382endif
383
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000384ifeq ($(CONFIG_SERPROG), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000385FEATURE_CFLAGS += -D'CONFIG_SERPROG=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000386PROGRAMMER_OBJS += serprog.o
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000387NEED_SERIAL := yes
388NEED_NET := yes
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000389endif
390
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000391ifeq ($(CONFIG_RAYER_SPI), yes)
392FEATURE_CFLAGS += -D'CONFIG_RAYER_SPI=1'
393PROGRAMMER_OBJS += rayer_spi.o
394# Actually, NEED_PCI is wrong. NEED_IOPORT_ACCESS would be more correct.
395NEED_PCI := yes
396endif
397
Virgil-Adrian Teacada7c5452012-04-30 23:11:06 +0000398ifeq ($(CONFIG_PONY_SPI), yes)
399FEATURE_CFLAGS += -D'CONFIG_PONY_SPI=1'
400PROGRAMMER_OBJS += pony_spi.o
401NEED_SERIAL := yes
402endif
403
Carl-Daniel Hailfinger547872b2009-09-28 13:15:16 +0000404ifeq ($(CONFIG_BITBANG_SPI), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000405FEATURE_CFLAGS += -D'CONFIG_BITBANG_SPI=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000406PROGRAMMER_OBJS += bitbang_spi.o
Carl-Daniel Hailfinger547872b2009-09-28 13:15:16 +0000407endif
408
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000409ifeq ($(CONFIG_NIC3COM), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000410FEATURE_CFLAGS += -D'CONFIG_NIC3COM=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000411PROGRAMMER_OBJS += nic3com.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000412NEED_PCI := yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000413endif
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000414
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000415ifeq ($(CONFIG_GFXNVIDIA), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000416FEATURE_CFLAGS += -D'CONFIG_GFXNVIDIA=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000417PROGRAMMER_OBJS += gfxnvidia.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000418NEED_PCI := yes
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000419endif
420
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000421ifeq ($(CONFIG_SATASII), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000422FEATURE_CFLAGS += -D'CONFIG_SATASII=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000423PROGRAMMER_OBJS += satasii.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000424NEED_PCI := yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000425endif
426
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000427ifeq ($(CONFIG_ATAHPT), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000428FEATURE_CFLAGS += -D'CONFIG_ATAHPT=1'
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000429PROGRAMMER_OBJS += atahpt.o
430NEED_PCI := yes
431endif
432
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000433ifeq ($(CONFIG_FT2232_SPI), yes)
Carl-Daniel Hailfingerc1f00c52010-01-09 14:18:01 +0000434FTDILIBS := $(shell pkg-config --libs libftdi 2>/dev/null || printf "%s" "-lftdi -lusb")
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000435# This is a totally ugly hack.
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000436FEATURE_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 +0000437FEATURE_LIBS += $(shell LC_ALL=C grep -q "FTDISUPPORT := yes" .features && printf "%s" "$(FTDILIBS)")
Sean Nelson5d134642009-12-24 16:54:21 +0000438PROGRAMMER_OBJS += ft2232_spi.o
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000439endif
440
441ifeq ($(CONFIG_DUMMY), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000442FEATURE_CFLAGS += -D'CONFIG_DUMMY=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000443PROGRAMMER_OBJS += dummyflasher.o
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000444endif
445
446ifeq ($(CONFIG_DRKAISER), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000447FEATURE_CFLAGS += -D'CONFIG_DRKAISER=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000448PROGRAMMER_OBJS += drkaiser.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000449NEED_PCI := yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000450endif
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000451
Joerg Fischer5665ef32010-05-21 21:54:07 +0000452ifeq ($(CONFIG_NICREALTEK), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000453FEATURE_CFLAGS += -D'CONFIG_NICREALTEK=1'
Joerg Fischer5665ef32010-05-21 21:54:07 +0000454PROGRAMMER_OBJS += nicrealtek.o
455NEED_PCI := yes
456endif
457
Andrew Morganc29c2e72010-06-07 22:37:54 +0000458ifeq ($(CONFIG_NICNATSEMI), yes)
459FEATURE_CFLAGS += -D'CONFIG_NICNATSEMI=1'
460PROGRAMMER_OBJS += nicnatsemi.o
461NEED_PCI := yes
462endif
463
Carl-Daniel Hailfingerb713d2e2011-05-08 00:24:18 +0000464ifeq ($(CONFIG_NICINTEL), yes)
465FEATURE_CFLAGS += -D'CONFIG_NICINTEL=1'
466PROGRAMMER_OBJS += nicintel.o
467NEED_PCI := yes
468endif
469
Idwer Vollering004f4b72010-09-03 18:21:21 +0000470ifeq ($(CONFIG_NICINTEL_SPI), yes)
471FEATURE_CFLAGS += -D'CONFIG_NICINTEL_SPI=1'
472PROGRAMMER_OBJS += nicintel_spi.o
473NEED_PCI := yes
474endif
475
Mark Marshall90021f22010-12-03 14:48:11 +0000476ifeq ($(CONFIG_OGP_SPI), yes)
477FEATURE_CFLAGS += -D'CONFIG_OGP_SPI=1'
478PROGRAMMER_OBJS += ogp_spi.o
479NEED_PCI := yes
480endif
481
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000482ifeq ($(CONFIG_BUSPIRATE_SPI), yes)
483FEATURE_CFLAGS += -D'CONFIG_BUSPIRATE_SPI=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000484PROGRAMMER_OBJS += buspirate_spi.o
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000485NEED_SERIAL := yes
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000486endif
487
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000488ifeq ($(CONFIG_DEDIPROG), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000489FEATURE_CFLAGS += -D'CONFIG_DEDIPROG=1'
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000490FEATURE_LIBS += -lusb
491PROGRAMMER_OBJS += dediprog.o
492endif
493
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000494ifeq ($(CONFIG_SATAMV), yes)
495FEATURE_CFLAGS += -D'CONFIG_SATAMV=1'
496PROGRAMMER_OBJS += satamv.o
497NEED_PCI := yes
498endif
499
Carl-Daniel Hailfinger8541d232012-02-16 21:00:27 +0000500ifeq ($(CONFIG_LINUX_SPI), yes)
Stefan Tauner8868db32012-03-13 00:18:19 +0000501# This is a totally ugly hack.
502FEATURE_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 +0000503PROGRAMMER_OBJS += linux_spi.o
504endif
505
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000506ifeq ($(NEED_SERIAL), yes)
Sean Nelson5d134642009-12-24 16:54:21 +0000507LIB_OBJS += serial.o
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000508endif
509
510ifeq ($(NEED_NET), yes)
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000511ifeq ($(TARGET_OS), SunOS)
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000512LIBS += -lsocket
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000513endif
Carl-Daniel Hailfingere51ea102009-11-23 19:20:11 +0000514endif
515
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000516ifeq ($(NEED_PCI), yes)
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000517CHECK_LIBPCI = yes
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000518FEATURE_CFLAGS += -D'NEED_PCI=1'
Carl-Daniel Hailfingerfb0828f2010-02-12 19:35:25 +0000519PROGRAMMER_OBJS += pcidev.o physmap.o hwaccess.o
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000520ifeq ($(TARGET_OS), NetBSD)
Carl-Daniel Hailfinger460b2822010-06-04 23:24:57 +0000521# The libpci we want is called libpciutils on NetBSD and needs NetBSD libpci.
522LIBS += -lpciutils -lpci
523# For (i386|x86_64)_iopl(2).
524LIBS += -l$(shell uname -p)
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000525else
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000526ifeq ($(TARGET_OS), DOS)
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000527# FIXME There needs to be a better way to do this
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000528LIBS += ../libpci/lib/libpci.a
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000529else
530LIBS += -lpci
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000531ifeq ($(TARGET_OS), OpenBSD)
Carl-Daniel Hailfingerb63b0672010-07-02 17:12:50 +0000532# For (i386|amd64)_iopl(2).
533LIBS += -l$(shell uname -m)
534endif
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000535endif
Jonathan A. Kollasch3646c8f2010-01-08 21:18:08 +0000536endif
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000537endif
538
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000539ifeq ($(CONFIG_PRINT_WIKI), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000540FEATURE_CFLAGS += -D'CONFIG_PRINT_WIKI=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000541CLI_OBJS += print_wiki.o
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000542endif
543
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +0000544FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "UTSNAME := yes" .features && printf "%s" "-D'HAVE_UTSNAME=1'")
545
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000546# We could use PULLED_IN_LIBS, but that would be ugly.
547FEATURE_LIBS += $(shell LC_ALL=C grep -q "NEEDLIBZ := yes" .libdeps && printf "%s" "-lz")
548
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000549LIBFLASHROM_OBJS = $(CHIP_OBJS) $(PROGRAMMER_OBJS) $(LIB_OBJS)
550OBJS = $(CLI_OBJS) $(LIBFLASHROM_OBJS)
Sean Nelson5d134642009-12-24 16:54:21 +0000551
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000552$(PROGRAM)$(EXEC_SUFFIX): $(OBJS)
553 $(CC) $(LDFLAGS) -o $(PROGRAM)$(EXEC_SUFFIX) $(OBJS) $(FEATURE_LIBS) $(LIBS)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000554
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000555libflashrom.a: $(LIBFLASHROM_OBJS)
556 $(AR) rcs $@ $^
557 $(RANLIB) $@
558
Carl-Daniel Hailfinger8ef7dce2009-07-10 20:19:48 +0000559# TAROPTIONS reduces information leakage from the packager's system.
560# If other tar programs support command line arguments for setting uid/gid of
561# stored files, they can be handled here as well.
562TAROPTIONS = $(shell LC_ALL=C tar --version|grep -q GNU && echo "--owner=root --group=root")
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000563
Paul Fox05dfbe62009-06-16 21:08:06 +0000564%.o: %.c .features
Stefan Reinauere2f01582010-06-07 11:08:07 +0000565 $(CC) -MMD $(CFLAGS) $(CPPFLAGS) $(FEATURE_CFLAGS) $(SVNDEF) -o $@ -c $<
Clark Rawlins02016f72008-02-14 23:22:20 +0000566
Carl-Daniel Hailfingera0020df2010-05-30 22:35:14 +0000567# Make sure to add all names of generated binaries here.
568# This includes all frontends and libflashrom.
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000569# We don't use EXEC_SUFFIX here because we want to clean everything.
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000570clean:
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000571 rm -f $(PROGRAM) $(PROGRAM).exe libflashrom.a *.o *.d
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000572
Ollie Lho184a4042005-11-26 21:55:36 +0000573distclean: clean
Stefan Reinauere2f01582010-06-07 11:08:07 +0000574 rm -f .features .libdeps
Christian Ruppertdb9d9f42009-05-14 14:17:07 +0000575
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000576strip: $(PROGRAM)$(EXEC_SUFFIX)
577 $(STRIP) $(STRIP_ARGS) $(PROGRAM)$(EXEC_SUFFIX)
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000578
Stefan Tauner56787082011-08-18 02:27:19 +0000579# to define test programs we use verbatim variables, which get exported
580# to environment variables and are referenced with $$<varname> later
581
582define COMPILER_TEST
583int main(int argc, char **argv)
584{
585 (void) argc;
586 (void) argv;
587 return 0;
588}
589endef
590export COMPILER_TEST
591
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000592compiler: featuresavailable
Paul Fox05dfbe62009-06-16 21:08:06 +0000593 @printf "Checking for a C compiler... "
Stefan Tauner56787082011-08-18 02:27:19 +0000594 @echo "$$COMPILER_TEST" > .test.c
595 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .test.c -o .test$(EXEC_SUFFIX) >/dev/null 2>&1 && \
Carl-Daniel Hailfinger4cb7a962009-06-16 09:31:51 +0000596 echo "found." || ( echo "not found."; \
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000597 rm -f .test.c .test$(EXEC_SUFFIX); exit 1)
598 @rm -f .test.c .test$(EXEC_SUFFIX)
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000599 @printf "Target arch is "
Carl-Daniel Hailfinger91199a12011-07-07 06:59:18 +0000600 @# FreeBSD wc will output extraneous whitespace.
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000601 @echo $(ARCH)|wc -w|grep -q '^[[:blank:]]*1[[:blank:]]*$$' || \
Carl-Daniel Hailfinger91199a12011-07-07 06:59:18 +0000602 ( echo "unknown. Aborting."; exit 1)
603 @printf "%s\n" '$(ARCH)'
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000604 @printf "Target OS is "
605 @# FreeBSD wc will output extraneous whitespace.
606 @echo $(TARGET_OS)|wc -w|grep -q '^[[:blank:]]*1[[:blank:]]*$$' || \
607 ( echo "unknown. Aborting."; exit 1)
608 @printf "%s\n" '$(TARGET_OS)'
Carl-Daniel Hailfinger4cb7a962009-06-16 09:31:51 +0000609
Stefan Tauner56787082011-08-18 02:27:19 +0000610define LIBPCI_TEST
611/* Avoid a failing test due to libpci header symbol shadowing breakage */
612#define index shadow_workaround_index
613#include <pci/pci.h>
614struct pci_access *pacc;
615int main(int argc, char **argv)
616{
617 (void) argc;
618 (void) argv;
619 pacc = pci_alloc();
620 return 0;
621}
622endef
623export LIBPCI_TEST
624
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000625ifeq ($(CHECK_LIBPCI), yes)
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000626pciutils: compiler
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000627 @printf "Checking for libpci headers... "
Stefan Tauner56787082011-08-18 02:27:19 +0000628 @echo "$$LIBPCI_TEST" > .test.c
Stefan Reinauer2fea3f32010-01-21 20:26:30 +0000629 @$(CC) -c $(CPPFLAGS) $(CFLAGS) .test.c -o .test.o >/dev/null 2>&1 && \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000630 echo "found." || ( echo "not found."; echo; \
631 echo "Please install libpci headers (package pciutils-devel)."; \
632 echo "See README for more information."; echo; \
633 rm -f .test.c .test.o; exit 1)
Carl-Daniel Hailfinger9979eac2010-03-22 12:29:45 +0000634 @printf "Checking if libpci is present and sufficient... "
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000635 @printf "" > .libdeps
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000636 @$(CC) $(LDFLAGS) .test.o -o .test$(EXEC_SUFFIX) $(LIBS) >/dev/null 2>&1 && \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000637 echo "yes." || ( echo "no."; \
Carl-Daniel Hailfinger9979eac2010-03-22 12:29:45 +0000638 printf "Checking if libz+libpci are present and sufficient..."; \
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000639 $(CC) $(LDFLAGS) .test.o -o .test$(EXEC_SUFFIX) $(LIBS) -lz >/dev/null 2>&1 && \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000640 ( echo "yes."; echo "NEEDLIBZ := yes" > .libdeps ) || ( echo "no."; echo; \
Carl-Daniel Hailfinger9979eac2010-03-22 12:29:45 +0000641 echo "Please install libpci (package pciutils) and/or libz."; \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000642 echo "See README for more information."; echo; \
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000643 rm -f .test.c .test.o .test$(EXEC_SUFFIX); exit 1) )
644 @rm -f .test.c .test.o .test$(EXEC_SUFFIX)
Carl-Daniel Hailfinger8a59ff02009-12-24 03:33:11 +0000645else
646pciutils: compiler
647 @printf "" > .libdeps
648endif
Stefan Reinauer53e96252005-12-01 16:19:24 +0000649
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000650.features: features
651
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000652# If a user does not explicitly request a non-working feature, we should
653# silently disable it. However, if a non-working (does not compile) feature
654# is explicitly requested, we should bail out with a descriptive error message.
655ifeq ($(UNSUPPORTED_FEATURES), )
656featuresavailable:
657else
658featuresavailable:
659 @echo "The following features are unavailable on your machine: $(UNSUPPORTED_FEATURES)"
660 @false
661endif
662
Stefan Tauner56787082011-08-18 02:27:19 +0000663define FTDI_TEST
664#include <ftdi.h>
665struct ftdi_context *ftdic = NULL;
666int main(int argc, char **argv)
667{
668 (void) argc;
669 (void) argv;
670 return ftdi_init(ftdic);
671}
672endef
673export FTDI_TEST
674
675define UTSNAME_TEST
676#include <sys/utsname.h>
677struct utsname osinfo;
678int main(int argc, char **argv)
679{
680 (void) argc;
681 (void) argv;
682 uname (&osinfo);
683 return 0;
684}
685endef
686export UTSNAME_TEST
687
Stefan Tauner8868db32012-03-13 00:18:19 +0000688define LINUX_SPI_TEST
689#include <linux/types.h>
690#include <linux/spi/spidev.h>
691
692int main(int argc, char **argv)
693{
694 (void) argc;
695 (void) argv;
696 return 0;
697}
698endef
699export LINUX_SPI_TEST
700
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000701features: compiler
702 @echo "FEATURES := yes" > .features.tmp
Stefan Tauner56787082011-08-18 02:27:19 +0000703ifeq ($(CONFIG_FT2232_SPI), yes)
Paul Fox05dfbe62009-06-16 21:08:06 +0000704 @printf "Checking for FTDI support... "
Stefan Tauner56787082011-08-18 02:27:19 +0000705 @echo "$$FTDI_TEST" > .featuretest.c
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000706 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) $(FTDILIBS) $(LIBS) >/dev/null 2>&1 && \
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000707 ( echo "found."; echo "FTDISUPPORT := yes" >> .features.tmp ) || \
708 ( echo "not found."; echo "FTDISUPPORT := no" >> .features.tmp )
Carl-Daniel Hailfinger8a59ff02009-12-24 03:33:11 +0000709endif
Stefan Tauner8868db32012-03-13 00:18:19 +0000710ifeq ($(CONFIG_LINUX_SPI), yes)
711 @printf "Checking if Linux SPI headers are present... "
712 @echo "$$LINUX_SPI_TEST" > .featuretest.c
713 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) >/dev/null 2>&1 && \
714 ( echo "yes."; echo "LINUX_SPI_SUPPORT := yes" >> .features.tmp ) || \
715 ( echo "no."; echo "LINUX_SPI_SUPPORT := no" >> .features.tmp )
716endif
Stefan Tauner56787082011-08-18 02:27:19 +0000717 @printf "Checking for utsname support... "
718 @echo "$$UTSNAME_TEST" > .featuretest.c
719 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) >/dev/null 2>&1 && \
720 ( echo "found."; echo "UTSNAME := yes" >> .features.tmp ) || \
721 ( echo "not found."; echo "UTSNAME := no" >> .features.tmp )
722 @$(DIFF) -q .features.tmp .features >/dev/null 2>&1 && rm .features.tmp || mv .features.tmp .features
723 @rm -f .featuretest.c .featuretest$(EXEC_SUFFIX)
Paul Fox05dfbe62009-06-16 21:08:06 +0000724
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000725install: $(PROGRAM)$(EXEC_SUFFIX)
Uwe Hermannc2a9c9c2009-05-14 14:51:14 +0000726 mkdir -p $(DESTDIR)$(PREFIX)/sbin
Uwe Hermann56b2cb02009-05-21 15:59:58 +0000727 mkdir -p $(DESTDIR)$(MANDIR)/man8
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000728 $(INSTALL) -m 0755 $(PROGRAM)$(EXEC_SUFFIX) $(DESTDIR)$(PREFIX)/sbin
Uwe Hermann56b2cb02009-05-21 15:59:58 +0000729 $(INSTALL) -m 0644 $(PROGRAM).8 $(DESTDIR)$(MANDIR)/man8
Uwe Hermannc113b572006-12-14 00:59:41 +0000730
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000731export:
Carl-Daniel Hailfinger48e5e092009-08-31 16:25:08 +0000732 @rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME)
733 @svn export -r BASE . $(EXPORTDIR)/flashrom-$(RELEASENAME)
734 @sed "s/^SVNVERSION.*/SVNVERSION := $(SVNVERSION)/" Makefile >$(EXPORTDIR)/flashrom-$(RELEASENAME)/Makefile
735 @LC_ALL=C svn log >$(EXPORTDIR)/flashrom-$(RELEASENAME)/ChangeLog
736 @echo Exported $(EXPORTDIR)/flashrom-$(RELEASENAME)/
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000737
738tarball: export
Carl-Daniel Hailfinger48e5e092009-08-31 16:25:08 +0000739 @tar cjf $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2 -C $(EXPORTDIR)/ $(TAROPTIONS) flashrom-$(RELEASENAME)/
740 @rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME)
741 @echo Created $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000742
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000743djgpp-dos: clean
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000744 make CC=i586-pc-msdosdjgpp-gcc STRIP=i586-pc-msdosdjgpp-strip
745libpayload: clean
746 make CC="CC=i386-elf-gcc lpgcc" AR=i386-elf-ar RANLIB=i386-elf-ranlib
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000747
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000748.PHONY: all clean distclean compiler pciutils features export tarball dos featuresavailable
Ollie Lho184a4042005-11-26 21:55:36 +0000749
Stefan Reinauere2f01582010-06-07 11:08:07 +0000750-include $(OBJS:.o=.d)