blob: ea61fb0da36c095d6d713869acf053b5e299cdf2 [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
40# FIXME We have to differentiate between host and target arch.
41OS_ARCH ?= $(shell uname)
Peter Stugea69c4472009-01-26 01:16:09 +000042ifneq ($(OS_ARCH), SunOS)
Adam Kaufman064b1f22007-02-06 19:47:50 +000043STRIP_ARGS = -s
44endif
Stefan Reinauerf79edb92009-01-26 01:23:31 +000045ifeq ($(OS_ARCH), Darwin)
Stefan Reinauer2fea3f32010-01-21 20:26:30 +000046CPPFLAGS += -I/opt/local/include -I/usr/local/include
Stefan Reinauer83704c52011-03-18 22:00:15 +000047# DirectHW framework can be found in the DirectHW library.
48LDFLAGS += -framework IOKit -framework DirectHW -L/opt/local/lib -L/usr/local/lib
Stefan Reinauerf79edb92009-01-26 01:23:31 +000049endif
Andriy Gapon65c1b862008-05-22 13:22:45 +000050ifeq ($(OS_ARCH), FreeBSD)
Stefan Reinauer2fea3f32010-01-21 20:26:30 +000051CPPFLAGS += -I/usr/local/include
Andriy Gapon65c1b862008-05-22 13:22:45 +000052LDFLAGS += -L/usr/local/lib
53endif
Carl-Daniel Hailfingerb63b0672010-07-02 17:12:50 +000054ifeq ($(OS_ARCH), OpenBSD)
55CPPFLAGS += -I/usr/local/include
56LDFLAGS += -L/usr/local/lib
57endif
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +000058ifeq ($(OS_ARCH), DOS)
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +000059EXEC_SUFFIX := .exe
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +000060CPPFLAGS += -I../libgetopt -I../libpci/include
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +000061# FIXME Check if we can achieve the same effect with -L../libgetopt -lgetopt
62LIBS += ../libgetopt/libgetopt.a
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +000063# Bus Pirate and Serprog are not supported under DOS (missing serial support).
64ifeq ($(CONFIG_BUSPIRATE_SPI), yes)
65UNSUPPORTED_FEATURES += CONFIG_BUSPIRATE_SPI=yes
66else
67override CONFIG_BUSPIRATE_SPI = no
68endif
69ifeq ($(CONFIG_SERPROG), yes)
70UNSUPPORTED_FEATURES += CONFIG_SERPROG=yes
71else
72override CONFIG_SERPROG = no
73endif
74# Dediprog and FT2232 are not supported under DOS (missing USB support).
75ifeq ($(CONFIG_DEDIPROG), yes)
76UNSUPPORTED_FEATURES += CONFIG_DEDIPROG=yes
77else
78override CONFIG_DEDIPROG = no
79endif
80ifeq ($(CONFIG_FT2232_SPI), yes)
81UNSUPPORTED_FEATURES += CONFIG_FT2232_SPI=yes
82else
83override CONFIG_FT2232_SPI = no
84endif
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +000085endif
Ollie Lho184a4042005-11-26 21:55:36 +000086
Uwe Hermannd5e85d62011-07-03 19:44:12 +000087ifeq ($(OS_ARCH), MINGW32_NT-5.1)
88# Explicitly set CC = gcc on MinGW, otherwise: "cc: command not found".
89CC = gcc
90# MinGW doesn't have the ffs() function, but we can use gcc's __builtin_ffs().
91CFLAGS += -Dffs=__builtin_ffs
92# libusb-win32/libftdi stuff is usually installed in /usr/local.
93CPPFLAGS += -I/usr/local/include
94LDFLAGS += -L/usr/local/lib
95# Serprog is not supported under Windows/MinGW (missing sockets support).
96ifeq ($(CONFIG_SERPROG), yes)
97UNSUPPORTED_FEATURES += CONFIG_SERPROG=yes
98else
99override CONFIG_SERPROG = no
100endif
101# For now we disable all PCI-based programmers on Windows/MinGW (no libpci).
102ifeq ($(CONFIG_INTERNAL), yes)
103UNSUPPORTED_FEATURES += CONFIG_INTERNAL=yes
104else
105override CONFIG_INTERNAL = no
106endif
107ifeq ($(CONFIG_RAYER_SPI), yes)
108UNSUPPORTED_FEATURES += CONFIG_RAYER_SPI=yes
109else
110override CONFIG_RAYER_SPI = no
111endif
112ifeq ($(CONFIG_NIC3COM), yes)
113UNSUPPORTED_FEATURES += CONFIG_NIC3COM=yes
114else
115override CONFIG_NIC3COM = no
116endif
117ifeq ($(CONFIG_GFXNVIDIA), yes)
118UNSUPPORTED_FEATURES += CONFIG_GFXNVIDIA=yes
119else
120override CONFIG_GFXNVIDIA = no
121endif
122ifeq ($(CONFIG_SATASII), yes)
123UNSUPPORTED_FEATURES += CONFIG_SATASII=yes
124else
125override CONFIG_SATASII = no
126endif
127ifeq ($(CONFIG_ATAHPT), yes)
128UNSUPPORTED_FEATURES += CONFIG_ATAHPT=yes
129else
130override CONFIG_ATAHPT = no
131endif
132ifeq ($(CONFIG_DRKAISER), yes)
133UNSUPPORTED_FEATURES += CONFIG_DRKAISER=yes
134else
135override CONFIG_DRKAISER = no
136endif
137ifeq ($(CONFIG_NICREALTEK), yes)
138UNSUPPORTED_FEATURES += CONFIG_NICREALTEK=yes
139else
140override CONFIG_NICREALTEK = no
141endif
142ifeq ($(CONFIG_NICNATSEMI), yes)
143UNSUPPORTED_FEATURES += CONFIG_NICNATSEMI=yes
144else
145override CONFIG_NICNATSEMI = no
146endif
147ifeq ($(CONFIG_NICINTEL), yes)
148UNSUPPORTED_FEATURES += CONFIG_NICINTEL=yes
149else
150override CONFIG_NICINTEL = no
151endif
152ifeq ($(CONFIG_NICINTEL_SPI), yes)
153UNSUPPORTED_FEATURES += CONFIG_NICINTEL_SPI=yes
154else
155override CONFIG_NICINTEL_SPI = no
156endif
157ifeq ($(CONFIG_OGP_SPI), yes)
158UNSUPPORTED_FEATURES += CONFIG_OGP_SPI=yes
159else
160override CONFIG_OGP_SPI = no
161endif
162ifeq ($(CONFIG_SATAMV), yes)
163UNSUPPORTED_FEATURES += CONFIG_SATAMV=yes
164else
165override CONFIG_SATAMV = no
166endif
167endif
168
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000169ifeq ($(OS_ARCH), libpayload)
170CC:=CC=i386-elf-gcc lpgcc
171AR:=i386-elf-ar
172RANLIB:=i386-elf-ranlib
173CPPFLAGS += -DSTANDALONE
174ifeq ($(CONFIG_DUMMY), yes)
175UNSUPPORTED_FEATURES += CONFIG_DUMMY=yes
176else
177override CONFIG_DUMMY = no
178endif
179ifeq ($(CONFIG_BUSPIRATE_SPI), yes)
180UNSUPPORTED_FEATURES += CONFIG_BUSPIRATE_SPI=yes
181else
182override CONFIG_BUSPIRATE_SPI = no
183endif
184ifeq ($(CONFIG_SERPROG), yes)
185UNSUPPORTED_FEATURES += CONFIG_SERPROG=yes
186else
187override CONFIG_SERPROG = no
188endif
189# Dediprog and FT2232 are not supported with libpayload (missing libusb support)
190ifeq ($(CONFIG_DEDIPROG), yes)
191UNSUPPORTED_FEATURES += CONFIG_DEDIPROG=yes
192else
193override CONFIG_DEDIPROG = no
194endif
195ifeq ($(CONFIG_FT2232_SPI), yes)
196UNSUPPORTED_FEATURES += CONFIG_FT2232_SPI=yes
197else
198override CONFIG_FT2232_SPI = no
199endif
200endif
201
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +0000202CHIP_OBJS = jedec.o stm50flw0x0x.o w39.o w29ee011.o \
Sean Nelson35727f72010-01-28 23:55:12 +0000203 sst28sf040.o m29f400bt.o 82802ab.o pm49fl00x.o \
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +0000204 sst49lfxxxc.o sst_fwhub.o flashchips.o spi.o spi25.o sharplhf00l04.o \
205 a25.o at25.o
Sean Nelson5d134642009-12-24 16:54:21 +0000206
207LIB_OBJS = layout.o
208
Sean Nelson51e97d72010-01-07 20:09:33 +0000209CLI_OBJS = flashrom.o cli_classic.o cli_output.o print.o
Sean Nelson5d134642009-12-24 16:54:21 +0000210
Carl-Daniel Hailfingercc1802d2010-01-06 10:21:00 +0000211PROGRAMMER_OBJS = udelay.o programmer.o
Ollie Lho184a4042005-11-26 21:55:36 +0000212
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000213all: pciutils features $(PROGRAM)$(EXEC_SUFFIX)
Ollie Lho184a4042005-11-26 21:55:36 +0000214
Carl-Daniel Hailfinger9e675852009-05-04 12:29:59 +0000215# Set the flashrom version string from the highest revision number
216# of the checked out flashrom files.
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000217# Note to packagers: Any tree exported with "make export" or "make tarball"
218# will not require subversion. The downloadable snapshots are already exported.
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000219SVNVERSION := $(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 +0000220
Carl-Daniel Hailfinger92c8b0c2010-10-08 16:31:43 +0000221RELEASE := 0.9.3
Carl-Daniel Hailfinger48e5e092009-08-31 16:25:08 +0000222VERSION := $(RELEASE)-r$(SVNVERSION)
223RELEASENAME ?= $(VERSION)
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000224
225SVNDEF := -D'FLASHROM_VERSION="$(VERSION)"'
Bernhard Walle201bde32008-01-21 15:24:22 +0000226
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000227# Always enable internal/onboard support for now.
228CONFIG_INTERNAL ?= yes
229
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000230# Always enable serprog for now. Needs to be disabled on Windows.
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000231CONFIG_SERPROG ?= yes
232
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000233# RayeR SPIPGM hardware support
234CONFIG_RAYER_SPI ?= yes
235
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000236# Always enable 3Com NICs for now.
237CONFIG_NIC3COM ?= yes
238
Carl-Daniel Hailfingerbf3af292010-07-29 14:41:46 +0000239# Enable NVIDIA graphics cards. Note: write and erase do not work properly.
240CONFIG_GFXNVIDIA ?= yes
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000241
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000242# Always enable SiI SATA controllers for now.
243CONFIG_SATASII ?= yes
244
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000245# Highpoint (HPT) ATA/RAID controller support.
246# IMPORTANT: This code is not yet working!
247CONFIG_ATAHPT ?= no
248
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000249# Always enable FT2232 SPI dongles for now.
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000250CONFIG_FT2232_SPI ?= yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000251
252# Always enable dummy tracing for now.
253CONFIG_DUMMY ?= yes
254
255# Always enable Dr. Kaiser for now.
256CONFIG_DRKAISER ?= yes
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000257
Joerg Fischer5665ef32010-05-21 21:54:07 +0000258# Always enable Realtek NICs for now.
259CONFIG_NICREALTEK ?= yes
260
Andrew Morganc29c2e72010-06-07 22:37:54 +0000261# Disable National Semiconductor NICs until support is complete and tested.
262CONFIG_NICNATSEMI ?= no
263
Carl-Daniel Hailfingerb713d2e2011-05-08 00:24:18 +0000264# Always enable Intel NICs for now.
265CONFIG_NICINTEL ?= yes
266
Idwer Vollering004f4b72010-09-03 18:21:21 +0000267# Always enable SPI on Intel NICs for now.
268CONFIG_NICINTEL_SPI ?= yes
269
Mark Marshall90021f22010-12-03 14:48:11 +0000270# Always enable SPI on OGP cards for now.
271CONFIG_OGP_SPI ?= yes
272
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000273# Always enable Bus Pirate SPI for now.
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000274CONFIG_BUSPIRATE_SPI ?= yes
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000275
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000276# Disable Dediprog SF100 until support is complete and tested.
277CONFIG_DEDIPROG ?= no
278
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000279# Always enable Marvell SATA controllers for now.
280CONFIG_SATAMV ?= yes
281
Carl-Daniel Hailfinger6161ff12009-11-16 21:22:24 +0000282# Disable wiki printing by default. It is only useful if you have wiki access.
Uwe Hermann2db77a02010-06-04 17:07:39 +0000283CONFIG_PRINT_WIKI ?= no
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000284
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000285# Bitbanging SPI infrastructure, default off unless needed.
286ifeq ($(CONFIG_RAYER_SPI), yes)
287override CONFIG_BITBANG_SPI = yes
288else
289ifeq ($(CONFIG_INTERNAL), yes)
290override CONFIG_BITBANG_SPI = yes
291else
292ifeq ($(CONFIG_NICINTEL_SPI), yes)
293override CONFIG_BITBANG_SPI = yes
294else
Mark Marshall90021f22010-12-03 14:48:11 +0000295ifeq ($(CONFIG_OGP_SPI), yes)
296override CONFIG_BITBANG_SPI = yes
297else
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000298CONFIG_BITBANG_SPI ?= no
299endif
300endif
301endif
Mark Marshall90021f22010-12-03 14:48:11 +0000302endif
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000303
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000304ifeq ($(CONFIG_INTERNAL), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000305FEATURE_CFLAGS += -D'CONFIG_INTERNAL=1'
Carl-Daniel Hailfingerb5b161b2010-06-04 19:05:39 +0000306PROGRAMMER_OBJS += processor_enable.o chipset_enable.o board_enable.o cbtable.o dmi.o internal.o
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000307# FIXME: The PROGRAMMER_OBJS below should only be included on x86.
David Hendricks4e748392011-02-28 23:58:15 +0000308PROGRAMMER_OBJS += it87spi.o it85spi.o ichspi.o sb600spi.o wbsio_spi.o mcp6x_spi.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000309NEED_PCI := yes
310endif
311
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000312ifeq ($(CONFIG_SERPROG), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000313FEATURE_CFLAGS += -D'CONFIG_SERPROG=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000314PROGRAMMER_OBJS += serprog.o
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000315NEED_SERIAL := yes
316NEED_NET := yes
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000317endif
318
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000319ifeq ($(CONFIG_RAYER_SPI), yes)
320FEATURE_CFLAGS += -D'CONFIG_RAYER_SPI=1'
321PROGRAMMER_OBJS += rayer_spi.o
322# Actually, NEED_PCI is wrong. NEED_IOPORT_ACCESS would be more correct.
323NEED_PCI := yes
324endif
325
Carl-Daniel Hailfinger547872b2009-09-28 13:15:16 +0000326ifeq ($(CONFIG_BITBANG_SPI), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000327FEATURE_CFLAGS += -D'CONFIG_BITBANG_SPI=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000328PROGRAMMER_OBJS += bitbang_spi.o
Carl-Daniel Hailfinger547872b2009-09-28 13:15:16 +0000329endif
330
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000331ifeq ($(CONFIG_NIC3COM), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000332FEATURE_CFLAGS += -D'CONFIG_NIC3COM=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000333PROGRAMMER_OBJS += nic3com.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000334NEED_PCI := yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000335endif
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000336
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000337ifeq ($(CONFIG_GFXNVIDIA), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000338FEATURE_CFLAGS += -D'CONFIG_GFXNVIDIA=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000339PROGRAMMER_OBJS += gfxnvidia.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000340NEED_PCI := yes
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000341endif
342
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000343ifeq ($(CONFIG_SATASII), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000344FEATURE_CFLAGS += -D'CONFIG_SATASII=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000345PROGRAMMER_OBJS += satasii.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000346NEED_PCI := yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000347endif
348
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000349ifeq ($(CONFIG_ATAHPT), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000350FEATURE_CFLAGS += -D'CONFIG_ATAHPT=1'
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000351PROGRAMMER_OBJS += atahpt.o
352NEED_PCI := yes
353endif
354
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000355ifeq ($(CONFIG_FT2232_SPI), yes)
Carl-Daniel Hailfingerc1f00c52010-01-09 14:18:01 +0000356FTDILIBS := $(shell pkg-config --libs libftdi 2>/dev/null || printf "%s" "-lftdi -lusb")
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000357# This is a totally ugly hack.
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000358FEATURE_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 +0000359FEATURE_LIBS += $(shell LC_ALL=C grep -q "FTDISUPPORT := yes" .features && printf "%s" "$(FTDILIBS)")
Sean Nelson5d134642009-12-24 16:54:21 +0000360PROGRAMMER_OBJS += ft2232_spi.o
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000361endif
362
363ifeq ($(CONFIG_DUMMY), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000364FEATURE_CFLAGS += -D'CONFIG_DUMMY=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000365PROGRAMMER_OBJS += dummyflasher.o
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000366endif
367
368ifeq ($(CONFIG_DRKAISER), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000369FEATURE_CFLAGS += -D'CONFIG_DRKAISER=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000370PROGRAMMER_OBJS += drkaiser.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000371NEED_PCI := yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000372endif
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000373
Joerg Fischer5665ef32010-05-21 21:54:07 +0000374ifeq ($(CONFIG_NICREALTEK), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000375FEATURE_CFLAGS += -D'CONFIG_NICREALTEK=1'
Joerg Fischer5665ef32010-05-21 21:54:07 +0000376PROGRAMMER_OBJS += nicrealtek.o
377NEED_PCI := yes
378endif
379
Andrew Morganc29c2e72010-06-07 22:37:54 +0000380ifeq ($(CONFIG_NICNATSEMI), yes)
381FEATURE_CFLAGS += -D'CONFIG_NICNATSEMI=1'
382PROGRAMMER_OBJS += nicnatsemi.o
383NEED_PCI := yes
384endif
385
Carl-Daniel Hailfingerb713d2e2011-05-08 00:24:18 +0000386ifeq ($(CONFIG_NICINTEL), yes)
387FEATURE_CFLAGS += -D'CONFIG_NICINTEL=1'
388PROGRAMMER_OBJS += nicintel.o
389NEED_PCI := yes
390endif
391
Idwer Vollering004f4b72010-09-03 18:21:21 +0000392ifeq ($(CONFIG_NICINTEL_SPI), yes)
393FEATURE_CFLAGS += -D'CONFIG_NICINTEL_SPI=1'
394PROGRAMMER_OBJS += nicintel_spi.o
395NEED_PCI := yes
396endif
397
Mark Marshall90021f22010-12-03 14:48:11 +0000398ifeq ($(CONFIG_OGP_SPI), yes)
399FEATURE_CFLAGS += -D'CONFIG_OGP_SPI=1'
400PROGRAMMER_OBJS += ogp_spi.o
401NEED_PCI := yes
402endif
403
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000404ifeq ($(CONFIG_BUSPIRATE_SPI), yes)
405FEATURE_CFLAGS += -D'CONFIG_BUSPIRATE_SPI=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000406PROGRAMMER_OBJS += buspirate_spi.o
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000407NEED_SERIAL := yes
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000408endif
409
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000410ifeq ($(CONFIG_DEDIPROG), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000411FEATURE_CFLAGS += -D'CONFIG_DEDIPROG=1'
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000412FEATURE_LIBS += -lusb
413PROGRAMMER_OBJS += dediprog.o
414endif
415
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000416ifeq ($(CONFIG_SATAMV), yes)
417FEATURE_CFLAGS += -D'CONFIG_SATAMV=1'
418PROGRAMMER_OBJS += satamv.o
419NEED_PCI := yes
420endif
421
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000422ifeq ($(NEED_SERIAL), yes)
Sean Nelson5d134642009-12-24 16:54:21 +0000423LIB_OBJS += serial.o
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000424endif
425
426ifeq ($(NEED_NET), yes)
427ifeq ($(OS_ARCH), SunOS)
428LIBS += -lsocket
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000429endif
Carl-Daniel Hailfingere51ea102009-11-23 19:20:11 +0000430endif
431
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000432ifeq ($(NEED_PCI), yes)
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000433CHECK_LIBPCI = yes
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000434FEATURE_CFLAGS += -D'NEED_PCI=1'
Carl-Daniel Hailfingerfb0828f2010-02-12 19:35:25 +0000435PROGRAMMER_OBJS += pcidev.o physmap.o hwaccess.o
Jonathan A. Kollasch3646c8f2010-01-08 21:18:08 +0000436ifeq ($(OS_ARCH), NetBSD)
Carl-Daniel Hailfinger460b2822010-06-04 23:24:57 +0000437# The libpci we want is called libpciutils on NetBSD and needs NetBSD libpci.
438LIBS += -lpciutils -lpci
439# For (i386|x86_64)_iopl(2).
440LIBS += -l$(shell uname -p)
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000441else
442ifeq ($(OS_ARCH), DOS)
443# FIXME There needs to be a better way to do this
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000444LIBS += ../libpci/lib/libpci.a
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000445else
446LIBS += -lpci
Carl-Daniel Hailfingerb63b0672010-07-02 17:12:50 +0000447ifeq ($(OS_ARCH), OpenBSD)
448# For (i386|amd64)_iopl(2).
449LIBS += -l$(shell uname -m)
450endif
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000451endif
Jonathan A. Kollasch3646c8f2010-01-08 21:18:08 +0000452endif
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000453endif
454
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000455ifeq ($(CONFIG_PRINT_WIKI), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000456FEATURE_CFLAGS += -D'CONFIG_PRINT_WIKI=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000457CLI_OBJS += print_wiki.o
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000458endif
459
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +0000460FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "UTSNAME := yes" .features && printf "%s" "-D'HAVE_UTSNAME=1'")
461
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000462# We could use PULLED_IN_LIBS, but that would be ugly.
463FEATURE_LIBS += $(shell LC_ALL=C grep -q "NEEDLIBZ := yes" .libdeps && printf "%s" "-lz")
464
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000465LIBFLASHROM_OBJS = $(CHIP_OBJS) $(PROGRAMMER_OBJS) $(LIB_OBJS)
466OBJS = $(CLI_OBJS) $(LIBFLASHROM_OBJS)
Sean Nelson5d134642009-12-24 16:54:21 +0000467
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000468$(PROGRAM)$(EXEC_SUFFIX): $(OBJS)
469 $(CC) $(LDFLAGS) -o $(PROGRAM)$(EXEC_SUFFIX) $(OBJS) $(FEATURE_LIBS) $(LIBS)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000470
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000471libflashrom.a: $(LIBFLASHROM_OBJS)
472 $(AR) rcs $@ $^
473 $(RANLIB) $@
474
Carl-Daniel Hailfinger8ef7dce2009-07-10 20:19:48 +0000475# TAROPTIONS reduces information leakage from the packager's system.
476# If other tar programs support command line arguments for setting uid/gid of
477# stored files, they can be handled here as well.
478TAROPTIONS = $(shell LC_ALL=C tar --version|grep -q GNU && echo "--owner=root --group=root")
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000479
Paul Fox05dfbe62009-06-16 21:08:06 +0000480%.o: %.c .features
Stefan Reinauere2f01582010-06-07 11:08:07 +0000481 $(CC) -MMD $(CFLAGS) $(CPPFLAGS) $(FEATURE_CFLAGS) $(SVNDEF) -o $@ -c $<
Clark Rawlins02016f72008-02-14 23:22:20 +0000482
Carl-Daniel Hailfingera0020df2010-05-30 22:35:14 +0000483# Make sure to add all names of generated binaries here.
484# This includes all frontends and libflashrom.
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000485# We don't use EXEC_SUFFIX here because we want to clean everything.
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000486clean:
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000487 rm -f $(PROGRAM) $(PROGRAM).exe libflashrom.a *.o *.d
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000488
Ollie Lho184a4042005-11-26 21:55:36 +0000489distclean: clean
Stefan Reinauere2f01582010-06-07 11:08:07 +0000490 rm -f .features .libdeps
Christian Ruppertdb9d9f42009-05-14 14:17:07 +0000491
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000492strip: $(PROGRAM)$(EXEC_SUFFIX)
493 $(STRIP) $(STRIP_ARGS) $(PROGRAM)$(EXEC_SUFFIX)
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000494
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000495compiler: featuresavailable
Paul Fox05dfbe62009-06-16 21:08:06 +0000496 @printf "Checking for a C compiler... "
Carl-Daniel Hailfinger4cb7a962009-06-16 09:31:51 +0000497 @$(shell ( echo "int main(int argc, char **argv)"; \
Stefan Taunerb23df712011-06-26 18:28:58 +0000498 echo "{ (void) argc; (void) argv; return 0; }"; ) > .test.c )
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000499 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .test.c -o .test$(EXEC_SUFFIX) >/dev/null && \
Carl-Daniel Hailfinger4cb7a962009-06-16 09:31:51 +0000500 echo "found." || ( echo "not found."; \
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000501 rm -f .test.c .test$(EXEC_SUFFIX); exit 1)
502 @rm -f .test.c .test$(EXEC_SUFFIX)
Carl-Daniel Hailfinger4cb7a962009-06-16 09:31:51 +0000503
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000504ifeq ($(CHECK_LIBPCI), yes)
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000505pciutils: compiler
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000506 @printf "Checking for libpci headers... "
Carl-Daniel Hailfinger72376832010-06-25 13:18:48 +0000507 @# Avoid a failing test due to libpci header symbol shadowing breakage
508 @$(shell ( echo "#define index shadow_workaround_index"; \
509 echo "#include <pci/pci.h>"; \
Stefan Reinauer53e96252005-12-01 16:19:24 +0000510 echo "struct pci_access *pacc;"; \
511 echo "int main(int argc, char **argv)"; \
Stefan Taunerb23df712011-06-26 18:28:58 +0000512 echo "{ (void) argc; (void) argv; pacc = pci_alloc(); return 0; }"; ) > .test.c )
Stefan Reinauer2fea3f32010-01-21 20:26:30 +0000513 @$(CC) -c $(CPPFLAGS) $(CFLAGS) .test.c -o .test.o >/dev/null 2>&1 && \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000514 echo "found." || ( echo "not found."; echo; \
515 echo "Please install libpci headers (package pciutils-devel)."; \
516 echo "See README for more information."; echo; \
517 rm -f .test.c .test.o; exit 1)
Carl-Daniel Hailfinger9979eac2010-03-22 12:29:45 +0000518 @printf "Checking if libpci is present and sufficient... "
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000519 @printf "" > .libdeps
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000520 @$(CC) $(LDFLAGS) .test.o -o .test$(EXEC_SUFFIX) $(LIBS) >/dev/null 2>&1 && \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000521 echo "yes." || ( echo "no."; \
Carl-Daniel Hailfinger9979eac2010-03-22 12:29:45 +0000522 printf "Checking if libz+libpci are present and sufficient..."; \
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000523 $(CC) $(LDFLAGS) .test.o -o .test$(EXEC_SUFFIX) $(LIBS) -lz >/dev/null 2>&1 && \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000524 ( echo "yes."; echo "NEEDLIBZ := yes" > .libdeps ) || ( echo "no."; echo; \
Carl-Daniel Hailfinger9979eac2010-03-22 12:29:45 +0000525 echo "Please install libpci (package pciutils) and/or libz."; \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000526 echo "See README for more information."; echo; \
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000527 rm -f .test.c .test.o .test$(EXEC_SUFFIX); exit 1) )
528 @rm -f .test.c .test.o .test$(EXEC_SUFFIX)
Carl-Daniel Hailfinger8a59ff02009-12-24 03:33:11 +0000529else
530pciutils: compiler
531 @printf "" > .libdeps
532endif
Stefan Reinauer53e96252005-12-01 16:19:24 +0000533
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000534.features: features
535
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000536# If a user does not explicitly request a non-working feature, we should
537# silently disable it. However, if a non-working (does not compile) feature
538# is explicitly requested, we should bail out with a descriptive error message.
539ifeq ($(UNSUPPORTED_FEATURES), )
540featuresavailable:
541else
542featuresavailable:
543 @echo "The following features are unavailable on your machine: $(UNSUPPORTED_FEATURES)"
544 @false
545endif
546
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000547ifeq ($(CONFIG_FT2232_SPI), yes)
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000548features: compiler
549 @echo "FEATURES := yes" > .features.tmp
Paul Fox05dfbe62009-06-16 21:08:06 +0000550 @printf "Checking for FTDI support... "
551 @$(shell ( echo "#include <ftdi.h>"; \
552 echo "struct ftdi_context *ftdic = NULL;"; \
553 echo "int main(int argc, char **argv)"; \
Stefan Taunerb23df712011-06-26 18:28:58 +0000554 echo "{ (void) argc; (void) argv; return ftdi_init(ftdic); }"; ) > .featuretest.c )
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000555 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) $(FTDILIBS) $(LIBS) >/dev/null 2>&1 && \
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000556 ( echo "found."; echo "FTDISUPPORT := yes" >> .features.tmp ) || \
557 ( echo "not found."; echo "FTDISUPPORT := no" >> .features.tmp )
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +0000558 @printf "Checking for utsname support... "
559 @$(shell ( echo "#include <sys/utsname.h>"; \
560 echo "struct utsname osinfo;"; \
561 echo "int main(int argc, char **argv)"; \
Stefan Taunerb23df712011-06-26 18:28:58 +0000562 echo "{ (void) argc; (void) argv; uname (&osinfo); return 0; }"; ) > .featuretest.c )
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000563 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) >/dev/null 2>&1 && \
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +0000564 ( echo "found."; echo "UTSNAME := yes" >> .features.tmp ) || \
565 ( echo "not found."; echo "UTSNAME := no" >> .features.tmp )
Paul Fox05dfbe62009-06-16 21:08:06 +0000566 @$(DIFF) -q .features.tmp .features >/dev/null 2>&1 && rm .features.tmp || mv .features.tmp .features
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000567 @rm -f .featuretest.c .featuretest$(EXEC_SUFFIX)
Carl-Daniel Hailfinger8a59ff02009-12-24 03:33:11 +0000568else
569features: compiler
Carl-Daniel Hailfingerc1f00c52010-01-09 14:18:01 +0000570 @echo "FEATURES := yes" > .features.tmp
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +0000571 @printf "Checking for utsname support... "
572 @$(shell ( echo "#include <sys/utsname.h>"; \
573 echo "struct utsname osinfo;"; \
574 echo "int main(int argc, char **argv)"; \
Stefan Taunerb23df712011-06-26 18:28:58 +0000575 echo "{ (void) argc; (void) argv; uname (&osinfo); return 0; }"; ) > .featuretest.c )
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000576 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) >/dev/null 2>&1 && \
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +0000577 ( echo "found."; echo "UTSNAME := yes" >> .features.tmp ) || \
578 ( echo "not found."; echo "UTSNAME := no" >> .features.tmp )
Carl-Daniel Hailfingerc1f00c52010-01-09 14:18:01 +0000579 @$(DIFF) -q .features.tmp .features >/dev/null 2>&1 && rm .features.tmp || mv .features.tmp .features
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000580 @rm -f .featuretest.c .featuretest$(EXEC_SUFFIX)
Carl-Daniel Hailfinger8a59ff02009-12-24 03:33:11 +0000581endif
Paul Fox05dfbe62009-06-16 21:08:06 +0000582
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000583install: $(PROGRAM)$(EXEC_SUFFIX)
Uwe Hermannc2a9c9c2009-05-14 14:51:14 +0000584 mkdir -p $(DESTDIR)$(PREFIX)/sbin
Uwe Hermann56b2cb02009-05-21 15:59:58 +0000585 mkdir -p $(DESTDIR)$(MANDIR)/man8
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000586 $(INSTALL) -m 0755 $(PROGRAM)$(EXEC_SUFFIX) $(DESTDIR)$(PREFIX)/sbin
Uwe Hermann56b2cb02009-05-21 15:59:58 +0000587 $(INSTALL) -m 0644 $(PROGRAM).8 $(DESTDIR)$(MANDIR)/man8
Uwe Hermannc113b572006-12-14 00:59:41 +0000588
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000589export:
Carl-Daniel Hailfinger48e5e092009-08-31 16:25:08 +0000590 @rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME)
591 @svn export -r BASE . $(EXPORTDIR)/flashrom-$(RELEASENAME)
592 @sed "s/^SVNVERSION.*/SVNVERSION := $(SVNVERSION)/" Makefile >$(EXPORTDIR)/flashrom-$(RELEASENAME)/Makefile
593 @LC_ALL=C svn log >$(EXPORTDIR)/flashrom-$(RELEASENAME)/ChangeLog
594 @echo Exported $(EXPORTDIR)/flashrom-$(RELEASENAME)/
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000595
596tarball: export
Carl-Daniel Hailfinger48e5e092009-08-31 16:25:08 +0000597 @tar cjf $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2 -C $(EXPORTDIR)/ $(TAROPTIONS) flashrom-$(RELEASENAME)/
598 @rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME)
599 @echo Created $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000600
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000601djgpp-dos: clean
602 make CC=i586-pc-msdosdjgpp-gcc STRIP=i586-pc-msdosdjgpp-strip WARNERROR=no OS_ARCH=DOS
603
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000604.PHONY: all clean distclean compiler pciutils features export tarball dos featuresavailable
Ollie Lho184a4042005-11-26 21:55:36 +0000605
Stefan Reinauere2f01582010-06-07 11:08:07 +0000606-include $(OBJS:.o=.d)