blob: 32159921fdf9bd9e72ca912e0220fe46fb85e4fb [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 ?= .
Christian Ruppertdb9d9f42009-05-14 14:17:07 +000031
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +000032WARNERROR ?= yes
33
34ifeq ($(WARNERROR), yes)
35CFLAGS += -Werror
36endif
37
38# FIXME We have to differentiate between host and target arch.
39OS_ARCH ?= $(shell uname)
Peter Stugea69c4472009-01-26 01:16:09 +000040ifneq ($(OS_ARCH), SunOS)
Adam Kaufman064b1f22007-02-06 19:47:50 +000041STRIP_ARGS = -s
42endif
Stefan Reinauerf79edb92009-01-26 01:23:31 +000043ifeq ($(OS_ARCH), Darwin)
Stefan Reinauer2fea3f32010-01-21 20:26:30 +000044CPPFLAGS += -I/opt/local/include -I/usr/local/include
Carl-Daniel Hailfingerf992c192010-10-06 23:16:10 +000045# DirectIO framework can be found in the DirectHW library.
Stefan Reinauer2fea3f32010-01-21 20:26:30 +000046LDFLAGS += -framework IOKit -framework DirectIO -L/opt/local/lib -L/usr/local/lib
Stefan Reinauerf79edb92009-01-26 01:23:31 +000047endif
Andriy Gapon65c1b862008-05-22 13:22:45 +000048ifeq ($(OS_ARCH), FreeBSD)
Stefan Reinauer2fea3f32010-01-21 20:26:30 +000049CPPFLAGS += -I/usr/local/include
Andriy Gapon65c1b862008-05-22 13:22:45 +000050LDFLAGS += -L/usr/local/lib
51endif
Carl-Daniel Hailfingerb63b0672010-07-02 17:12:50 +000052ifeq ($(OS_ARCH), OpenBSD)
53CPPFLAGS += -I/usr/local/include
54LDFLAGS += -L/usr/local/lib
55endif
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +000056ifeq ($(OS_ARCH), DOS)
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +000057EXEC_SUFFIX := .exe
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +000058CPPFLAGS += -I../libgetopt -I../libpci/include
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +000059# FIXME Check if we can achieve the same effect with -L../libgetopt -lgetopt
60LIBS += ../libgetopt/libgetopt.a
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +000061# Bus Pirate and Serprog are not supported under DOS (missing serial support).
62ifeq ($(CONFIG_BUSPIRATE_SPI), yes)
63UNSUPPORTED_FEATURES += CONFIG_BUSPIRATE_SPI=yes
64else
65override CONFIG_BUSPIRATE_SPI = no
66endif
67ifeq ($(CONFIG_SERPROG), yes)
68UNSUPPORTED_FEATURES += CONFIG_SERPROG=yes
69else
70override CONFIG_SERPROG = no
71endif
72# Dediprog and FT2232 are not supported under DOS (missing USB support).
73ifeq ($(CONFIG_DEDIPROG), yes)
74UNSUPPORTED_FEATURES += CONFIG_DEDIPROG=yes
75else
76override CONFIG_DEDIPROG = no
77endif
78ifeq ($(CONFIG_FT2232_SPI), yes)
79UNSUPPORTED_FEATURES += CONFIG_FT2232_SPI=yes
80else
81override CONFIG_FT2232_SPI = no
82endif
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +000083endif
Ollie Lho184a4042005-11-26 21:55:36 +000084
Sean Nelson28accc22010-03-19 18:47:06 +000085CHIP_OBJS = jedec.o stm50flw0x0x.o w39v040c.o w39v080fa.o w29ee011.o \
Sean Nelson35727f72010-01-28 23:55:12 +000086 sst28sf040.o m29f400bt.o 82802ab.o pm49fl00x.o \
Carl-Daniel Hailfingerb30a5ed2010-10-10 14:02:27 +000087 sst49lfxxxc.o sst_fwhub.o flashchips.o spi.o spi25.o sharplhf00l04.o
Sean Nelson5d134642009-12-24 16:54:21 +000088
89LIB_OBJS = layout.o
90
Sean Nelson51e97d72010-01-07 20:09:33 +000091CLI_OBJS = flashrom.o cli_classic.o cli_output.o print.o
Sean Nelson5d134642009-12-24 16:54:21 +000092
Carl-Daniel Hailfingercc1802d2010-01-06 10:21:00 +000093PROGRAMMER_OBJS = udelay.o programmer.o
Ollie Lho184a4042005-11-26 21:55:36 +000094
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +000095all: pciutils features $(PROGRAM)$(EXEC_SUFFIX)
Ollie Lho184a4042005-11-26 21:55:36 +000096
Carl-Daniel Hailfinger9e675852009-05-04 12:29:59 +000097# Set the flashrom version string from the highest revision number
98# of the checked out flashrom files.
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +000099# Note to packagers: Any tree exported with "make export" or "make tarball"
100# will not require subversion. The downloadable snapshots are already exported.
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000101SVNVERSION := $(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 +0000102
Carl-Daniel Hailfinger92c8b0c2010-10-08 16:31:43 +0000103RELEASE := 0.9.3
Carl-Daniel Hailfinger48e5e092009-08-31 16:25:08 +0000104VERSION := $(RELEASE)-r$(SVNVERSION)
105RELEASENAME ?= $(VERSION)
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000106
107SVNDEF := -D'FLASHROM_VERSION="$(VERSION)"'
Bernhard Walle201bde32008-01-21 15:24:22 +0000108
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000109# Always enable internal/onboard support for now.
110CONFIG_INTERNAL ?= yes
111
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000112# Always enable serprog for now. Needs to be disabled on Windows.
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000113CONFIG_SERPROG ?= yes
114
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000115# RayeR SPIPGM hardware support
116CONFIG_RAYER_SPI ?= yes
117
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000118# Always enable 3Com NICs for now.
119CONFIG_NIC3COM ?= yes
120
Carl-Daniel Hailfingerbf3af292010-07-29 14:41:46 +0000121# Enable NVIDIA graphics cards. Note: write and erase do not work properly.
122CONFIG_GFXNVIDIA ?= yes
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000123
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000124# Always enable SiI SATA controllers for now.
125CONFIG_SATASII ?= yes
126
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000127# Highpoint (HPT) ATA/RAID controller support.
128# IMPORTANT: This code is not yet working!
129CONFIG_ATAHPT ?= no
130
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000131# Always enable FT2232 SPI dongles for now.
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000132CONFIG_FT2232_SPI ?= yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000133
134# Always enable dummy tracing for now.
135CONFIG_DUMMY ?= yes
136
137# Always enable Dr. Kaiser for now.
138CONFIG_DRKAISER ?= yes
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000139
Joerg Fischer5665ef32010-05-21 21:54:07 +0000140# Always enable Realtek NICs for now.
141CONFIG_NICREALTEK ?= yes
142
Andrew Morganc29c2e72010-06-07 22:37:54 +0000143# Disable National Semiconductor NICs until support is complete and tested.
144CONFIG_NICNATSEMI ?= no
145
Idwer Vollering004f4b72010-09-03 18:21:21 +0000146# Always enable SPI on Intel NICs for now.
147CONFIG_NICINTEL_SPI ?= yes
148
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000149# Always enable Bus Pirate SPI for now.
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000150CONFIG_BUSPIRATE_SPI ?= yes
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000151
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000152# Disable Dediprog SF100 until support is complete and tested.
153CONFIG_DEDIPROG ?= no
154
Carl-Daniel Hailfinger6161ff12009-11-16 21:22:24 +0000155# Disable wiki printing by default. It is only useful if you have wiki access.
Uwe Hermann2db77a02010-06-04 17:07:39 +0000156CONFIG_PRINT_WIKI ?= no
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000157
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000158# Bitbanging SPI infrastructure, default off unless needed.
159ifeq ($(CONFIG_RAYER_SPI), yes)
160override CONFIG_BITBANG_SPI = yes
161else
162ifeq ($(CONFIG_INTERNAL), yes)
163override CONFIG_BITBANG_SPI = yes
164else
165ifeq ($(CONFIG_NICINTEL_SPI), yes)
166override CONFIG_BITBANG_SPI = yes
167else
168CONFIG_BITBANG_SPI ?= no
169endif
170endif
171endif
172
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000173ifeq ($(CONFIG_INTERNAL), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000174FEATURE_CFLAGS += -D'CONFIG_INTERNAL=1'
Carl-Daniel Hailfingerb5b161b2010-06-04 19:05:39 +0000175PROGRAMMER_OBJS += processor_enable.o chipset_enable.o board_enable.o cbtable.o dmi.o internal.o
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000176# FIXME: The PROGRAMMER_OBJS below should only be included on x86.
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +0000177PROGRAMMER_OBJS += it87spi.o ichspi.o sb600spi.o wbsio_spi.o mcp6x_spi.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000178NEED_PCI := yes
179endif
180
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000181ifeq ($(CONFIG_SERPROG), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000182FEATURE_CFLAGS += -D'CONFIG_SERPROG=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000183PROGRAMMER_OBJS += serprog.o
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000184NEED_SERIAL := yes
185NEED_NET := yes
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000186endif
187
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000188ifeq ($(CONFIG_RAYER_SPI), yes)
189FEATURE_CFLAGS += -D'CONFIG_RAYER_SPI=1'
190PROGRAMMER_OBJS += rayer_spi.o
191# Actually, NEED_PCI is wrong. NEED_IOPORT_ACCESS would be more correct.
192NEED_PCI := yes
193endif
194
Carl-Daniel Hailfinger547872b2009-09-28 13:15:16 +0000195ifeq ($(CONFIG_BITBANG_SPI), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000196FEATURE_CFLAGS += -D'CONFIG_BITBANG_SPI=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000197PROGRAMMER_OBJS += bitbang_spi.o
Carl-Daniel Hailfinger547872b2009-09-28 13:15:16 +0000198endif
199
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000200ifeq ($(CONFIG_NIC3COM), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000201FEATURE_CFLAGS += -D'CONFIG_NIC3COM=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000202PROGRAMMER_OBJS += nic3com.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000203NEED_PCI := yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000204endif
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000205
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000206ifeq ($(CONFIG_GFXNVIDIA), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000207FEATURE_CFLAGS += -D'CONFIG_GFXNVIDIA=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000208PROGRAMMER_OBJS += gfxnvidia.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000209NEED_PCI := yes
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000210endif
211
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000212ifeq ($(CONFIG_SATASII), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000213FEATURE_CFLAGS += -D'CONFIG_SATASII=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000214PROGRAMMER_OBJS += satasii.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000215NEED_PCI := yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000216endif
217
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000218ifeq ($(CONFIG_ATAHPT), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000219FEATURE_CFLAGS += -D'CONFIG_ATAHPT=1'
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000220PROGRAMMER_OBJS += atahpt.o
221NEED_PCI := yes
222endif
223
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000224ifeq ($(CONFIG_FT2232_SPI), yes)
Carl-Daniel Hailfingerc1f00c52010-01-09 14:18:01 +0000225FTDILIBS := $(shell pkg-config --libs libftdi 2>/dev/null || printf "%s" "-lftdi -lusb")
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000226# This is a totally ugly hack.
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000227FEATURE_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 +0000228FEATURE_LIBS += $(shell LC_ALL=C grep -q "FTDISUPPORT := yes" .features && printf "%s" "$(FTDILIBS)")
Sean Nelson5d134642009-12-24 16:54:21 +0000229PROGRAMMER_OBJS += ft2232_spi.o
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000230endif
231
232ifeq ($(CONFIG_DUMMY), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000233FEATURE_CFLAGS += -D'CONFIG_DUMMY=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000234PROGRAMMER_OBJS += dummyflasher.o
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000235endif
236
237ifeq ($(CONFIG_DRKAISER), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000238FEATURE_CFLAGS += -D'CONFIG_DRKAISER=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000239PROGRAMMER_OBJS += drkaiser.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000240NEED_PCI := yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000241endif
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000242
Joerg Fischer5665ef32010-05-21 21:54:07 +0000243ifeq ($(CONFIG_NICREALTEK), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000244FEATURE_CFLAGS += -D'CONFIG_NICREALTEK=1'
Joerg Fischer5665ef32010-05-21 21:54:07 +0000245PROGRAMMER_OBJS += nicrealtek.o
246NEED_PCI := yes
247endif
248
Andrew Morganc29c2e72010-06-07 22:37:54 +0000249ifeq ($(CONFIG_NICNATSEMI), yes)
250FEATURE_CFLAGS += -D'CONFIG_NICNATSEMI=1'
251PROGRAMMER_OBJS += nicnatsemi.o
252NEED_PCI := yes
253endif
254
Idwer Vollering004f4b72010-09-03 18:21:21 +0000255ifeq ($(CONFIG_NICINTEL_SPI), yes)
256FEATURE_CFLAGS += -D'CONFIG_NICINTEL_SPI=1'
257PROGRAMMER_OBJS += nicintel_spi.o
258NEED_PCI := yes
259endif
260
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000261ifeq ($(CONFIG_BUSPIRATE_SPI), yes)
262FEATURE_CFLAGS += -D'CONFIG_BUSPIRATE_SPI=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000263PROGRAMMER_OBJS += buspirate_spi.o
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000264NEED_SERIAL := yes
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000265endif
266
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000267ifeq ($(CONFIG_DEDIPROG), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000268FEATURE_CFLAGS += -D'CONFIG_DEDIPROG=1'
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000269FEATURE_LIBS += -lusb
270PROGRAMMER_OBJS += dediprog.o
271endif
272
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000273ifeq ($(NEED_SERIAL), yes)
Sean Nelson5d134642009-12-24 16:54:21 +0000274LIB_OBJS += serial.o
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000275endif
276
277ifeq ($(NEED_NET), yes)
278ifeq ($(OS_ARCH), SunOS)
279LIBS += -lsocket
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000280endif
Carl-Daniel Hailfingere51ea102009-11-23 19:20:11 +0000281endif
282
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000283ifeq ($(NEED_PCI), yes)
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000284CHECK_LIBPCI = yes
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000285FEATURE_CFLAGS += -D'NEED_PCI=1'
Carl-Daniel Hailfingerfb0828f2010-02-12 19:35:25 +0000286PROGRAMMER_OBJS += pcidev.o physmap.o hwaccess.o
Jonathan A. Kollasch3646c8f2010-01-08 21:18:08 +0000287ifeq ($(OS_ARCH), NetBSD)
Carl-Daniel Hailfinger460b2822010-06-04 23:24:57 +0000288# The libpci we want is called libpciutils on NetBSD and needs NetBSD libpci.
289LIBS += -lpciutils -lpci
290# For (i386|x86_64)_iopl(2).
291LIBS += -l$(shell uname -p)
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000292else
293ifeq ($(OS_ARCH), DOS)
294# FIXME There needs to be a better way to do this
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000295LIBS += ../libpci/lib/libpci.a
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000296else
297LIBS += -lpci
Carl-Daniel Hailfingerb63b0672010-07-02 17:12:50 +0000298ifeq ($(OS_ARCH), OpenBSD)
299# For (i386|amd64)_iopl(2).
300LIBS += -l$(shell uname -m)
301endif
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000302endif
Jonathan A. Kollasch3646c8f2010-01-08 21:18:08 +0000303endif
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000304endif
305
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000306ifeq ($(CONFIG_PRINT_WIKI), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000307FEATURE_CFLAGS += -D'CONFIG_PRINT_WIKI=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000308CLI_OBJS += print_wiki.o
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000309endif
310
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +0000311FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "UTSNAME := yes" .features && printf "%s" "-D'HAVE_UTSNAME=1'")
312
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000313# We could use PULLED_IN_LIBS, but that would be ugly.
314FEATURE_LIBS += $(shell LC_ALL=C grep -q "NEEDLIBZ := yes" .libdeps && printf "%s" "-lz")
315
Sean Nelson5d134642009-12-24 16:54:21 +0000316OBJS = $(CHIP_OBJS) $(CLI_OBJS) $(PROGRAMMER_OBJS) $(LIB_OBJS)
317
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000318$(PROGRAM)$(EXEC_SUFFIX): $(OBJS)
319 $(CC) $(LDFLAGS) -o $(PROGRAM)$(EXEC_SUFFIX) $(OBJS) $(FEATURE_LIBS) $(LIBS)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000320
Carl-Daniel Hailfinger8ef7dce2009-07-10 20:19:48 +0000321# TAROPTIONS reduces information leakage from the packager's system.
322# If other tar programs support command line arguments for setting uid/gid of
323# stored files, they can be handled here as well.
324TAROPTIONS = $(shell LC_ALL=C tar --version|grep -q GNU && echo "--owner=root --group=root")
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000325
Paul Fox05dfbe62009-06-16 21:08:06 +0000326%.o: %.c .features
Stefan Reinauere2f01582010-06-07 11:08:07 +0000327 $(CC) -MMD $(CFLAGS) $(CPPFLAGS) $(FEATURE_CFLAGS) $(SVNDEF) -o $@ -c $<
Clark Rawlins02016f72008-02-14 23:22:20 +0000328
Carl-Daniel Hailfingera0020df2010-05-30 22:35:14 +0000329# Make sure to add all names of generated binaries here.
330# This includes all frontends and libflashrom.
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000331# We don't use EXEC_SUFFIX here because we want to clean everything.
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000332clean:
Stefan Reinauere2f01582010-06-07 11:08:07 +0000333 rm -f $(PROGRAM) $(PROGRAM).exe *.o *.d
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000334
Ollie Lho184a4042005-11-26 21:55:36 +0000335distclean: clean
Stefan Reinauere2f01582010-06-07 11:08:07 +0000336 rm -f .features .libdeps
Christian Ruppertdb9d9f42009-05-14 14:17:07 +0000337
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000338strip: $(PROGRAM)$(EXEC_SUFFIX)
339 $(STRIP) $(STRIP_ARGS) $(PROGRAM)$(EXEC_SUFFIX)
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000340
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000341compiler: featuresavailable
Paul Fox05dfbe62009-06-16 21:08:06 +0000342 @printf "Checking for a C compiler... "
Carl-Daniel Hailfinger4cb7a962009-06-16 09:31:51 +0000343 @$(shell ( echo "int main(int argc, char **argv)"; \
344 echo "{ return 0; }"; ) > .test.c )
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000345 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .test.c -o .test$(EXEC_SUFFIX) >/dev/null && \
Carl-Daniel Hailfinger4cb7a962009-06-16 09:31:51 +0000346 echo "found." || ( echo "not found."; \
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000347 rm -f .test.c .test$(EXEC_SUFFIX); exit 1)
348 @rm -f .test.c .test$(EXEC_SUFFIX)
Carl-Daniel Hailfinger4cb7a962009-06-16 09:31:51 +0000349
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000350ifeq ($(CHECK_LIBPCI), yes)
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000351pciutils: compiler
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000352 @printf "Checking for libpci headers... "
Carl-Daniel Hailfinger72376832010-06-25 13:18:48 +0000353 @# Avoid a failing test due to libpci header symbol shadowing breakage
354 @$(shell ( echo "#define index shadow_workaround_index"; \
355 echo "#include <pci/pci.h>"; \
Stefan Reinauer53e96252005-12-01 16:19:24 +0000356 echo "struct pci_access *pacc;"; \
357 echo "int main(int argc, char **argv)"; \
358 echo "{ pacc = pci_alloc(); return 0; }"; ) > .test.c )
Stefan Reinauer2fea3f32010-01-21 20:26:30 +0000359 @$(CC) -c $(CPPFLAGS) $(CFLAGS) .test.c -o .test.o >/dev/null 2>&1 && \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000360 echo "found." || ( echo "not found."; echo; \
361 echo "Please install libpci headers (package pciutils-devel)."; \
362 echo "See README for more information."; echo; \
363 rm -f .test.c .test.o; exit 1)
Carl-Daniel Hailfinger9979eac2010-03-22 12:29:45 +0000364 @printf "Checking if libpci is present and sufficient... "
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000365 @printf "" > .libdeps
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000366 @$(CC) $(LDFLAGS) .test.o -o .test$(EXEC_SUFFIX) $(LIBS) >/dev/null 2>&1 && \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000367 echo "yes." || ( echo "no."; \
Carl-Daniel Hailfinger9979eac2010-03-22 12:29:45 +0000368 printf "Checking if libz+libpci are present and sufficient..."; \
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000369 $(CC) $(LDFLAGS) .test.o -o .test$(EXEC_SUFFIX) $(LIBS) -lz >/dev/null 2>&1 && \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000370 ( echo "yes."; echo "NEEDLIBZ := yes" > .libdeps ) || ( echo "no."; echo; \
Carl-Daniel Hailfinger9979eac2010-03-22 12:29:45 +0000371 echo "Please install libpci (package pciutils) and/or libz."; \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000372 echo "See README for more information."; echo; \
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000373 rm -f .test.c .test.o .test$(EXEC_SUFFIX); exit 1) )
374 @rm -f .test.c .test.o .test$(EXEC_SUFFIX)
Carl-Daniel Hailfinger8a59ff02009-12-24 03:33:11 +0000375else
376pciutils: compiler
377 @printf "" > .libdeps
378endif
Stefan Reinauer53e96252005-12-01 16:19:24 +0000379
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000380.features: features
381
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000382# If a user does not explicitly request a non-working feature, we should
383# silently disable it. However, if a non-working (does not compile) feature
384# is explicitly requested, we should bail out with a descriptive error message.
385ifeq ($(UNSUPPORTED_FEATURES), )
386featuresavailable:
387else
388featuresavailable:
389 @echo "The following features are unavailable on your machine: $(UNSUPPORTED_FEATURES)"
390 @false
391endif
392
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000393ifeq ($(CONFIG_FT2232_SPI), yes)
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000394features: compiler
395 @echo "FEATURES := yes" > .features.tmp
Paul Fox05dfbe62009-06-16 21:08:06 +0000396 @printf "Checking for FTDI support... "
397 @$(shell ( echo "#include <ftdi.h>"; \
398 echo "struct ftdi_context *ftdic = NULL;"; \
399 echo "int main(int argc, char **argv)"; \
400 echo "{ return ftdi_init(ftdic); }"; ) > .featuretest.c )
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000401 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) $(FTDILIBS) $(LIBS) >/dev/null 2>&1 && \
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000402 ( echo "found."; echo "FTDISUPPORT := yes" >> .features.tmp ) || \
403 ( echo "not found."; echo "FTDISUPPORT := no" >> .features.tmp )
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +0000404 @printf "Checking for utsname support... "
405 @$(shell ( echo "#include <sys/utsname.h>"; \
406 echo "struct utsname osinfo;"; \
407 echo "int main(int argc, char **argv)"; \
408 echo "{ uname (&osinfo); return 0; }"; ) > .featuretest.c )
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000409 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) >/dev/null 2>&1 && \
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +0000410 ( echo "found."; echo "UTSNAME := yes" >> .features.tmp ) || \
411 ( echo "not found."; echo "UTSNAME := no" >> .features.tmp )
Paul Fox05dfbe62009-06-16 21:08:06 +0000412 @$(DIFF) -q .features.tmp .features >/dev/null 2>&1 && rm .features.tmp || mv .features.tmp .features
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000413 @rm -f .featuretest.c .featuretest$(EXEC_SUFFIX)
Carl-Daniel Hailfinger8a59ff02009-12-24 03:33:11 +0000414else
415features: compiler
Carl-Daniel Hailfingerc1f00c52010-01-09 14:18:01 +0000416 @echo "FEATURES := yes" > .features.tmp
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +0000417 @printf "Checking for utsname support... "
418 @$(shell ( echo "#include <sys/utsname.h>"; \
419 echo "struct utsname osinfo;"; \
420 echo "int main(int argc, char **argv)"; \
421 echo "{ uname (&osinfo); return 0; }"; ) > .featuretest.c )
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000422 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) >/dev/null 2>&1 && \
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +0000423 ( echo "found."; echo "UTSNAME := yes" >> .features.tmp ) || \
424 ( echo "not found."; echo "UTSNAME := no" >> .features.tmp )
Carl-Daniel Hailfingerc1f00c52010-01-09 14:18:01 +0000425 @$(DIFF) -q .features.tmp .features >/dev/null 2>&1 && rm .features.tmp || mv .features.tmp .features
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000426 @rm -f .featuretest.c .featuretest$(EXEC_SUFFIX)
Carl-Daniel Hailfinger8a59ff02009-12-24 03:33:11 +0000427endif
Paul Fox05dfbe62009-06-16 21:08:06 +0000428
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000429install: $(PROGRAM)$(EXEC_SUFFIX)
Uwe Hermannc2a9c9c2009-05-14 14:51:14 +0000430 mkdir -p $(DESTDIR)$(PREFIX)/sbin
Uwe Hermann56b2cb02009-05-21 15:59:58 +0000431 mkdir -p $(DESTDIR)$(MANDIR)/man8
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000432 $(INSTALL) -m 0755 $(PROGRAM)$(EXEC_SUFFIX) $(DESTDIR)$(PREFIX)/sbin
Uwe Hermann56b2cb02009-05-21 15:59:58 +0000433 $(INSTALL) -m 0644 $(PROGRAM).8 $(DESTDIR)$(MANDIR)/man8
Uwe Hermannc113b572006-12-14 00:59:41 +0000434
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000435export:
Carl-Daniel Hailfinger48e5e092009-08-31 16:25:08 +0000436 @rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME)
437 @svn export -r BASE . $(EXPORTDIR)/flashrom-$(RELEASENAME)
438 @sed "s/^SVNVERSION.*/SVNVERSION := $(SVNVERSION)/" Makefile >$(EXPORTDIR)/flashrom-$(RELEASENAME)/Makefile
439 @LC_ALL=C svn log >$(EXPORTDIR)/flashrom-$(RELEASENAME)/ChangeLog
440 @echo Exported $(EXPORTDIR)/flashrom-$(RELEASENAME)/
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000441
442tarball: export
Carl-Daniel Hailfinger48e5e092009-08-31 16:25:08 +0000443 @tar cjf $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2 -C $(EXPORTDIR)/ $(TAROPTIONS) flashrom-$(RELEASENAME)/
444 @rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME)
445 @echo Created $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000446
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000447djgpp-dos: clean
448 make CC=i586-pc-msdosdjgpp-gcc STRIP=i586-pc-msdosdjgpp-strip WARNERROR=no OS_ARCH=DOS
449
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000450.PHONY: all clean distclean compiler pciutils features export tarball dos featuresavailable
Ollie Lho184a4042005-11-26 21:55:36 +0000451
Stefan Reinauere2f01582010-06-07 11:08:07 +0000452-include $(OBJS:.o=.d)