blob: 876a3c37f2451c1912cd5b61967e0d924942381c [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 Hailfinger91199a12011-07-07 06:59:18 +000040# Determine the destination processor architecture
41override ARCH = $(strip $(shell LC_ALL=C $(CC) -E arch.h|grep -v '^\#'))
42
43# FIXME We have to differentiate between host and target OS architecture.
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +000044OS_ARCH ?= $(shell uname)
Peter Stugea69c4472009-01-26 01:16:09 +000045ifneq ($(OS_ARCH), SunOS)
Adam Kaufman064b1f22007-02-06 19:47:50 +000046STRIP_ARGS = -s
47endif
Stefan Reinauerf79edb92009-01-26 01:23:31 +000048ifeq ($(OS_ARCH), Darwin)
Stefan Reinauer2fea3f32010-01-21 20:26:30 +000049CPPFLAGS += -I/opt/local/include -I/usr/local/include
Stefan Reinauer83704c52011-03-18 22:00:15 +000050# DirectHW framework can be found in the DirectHW library.
51LDFLAGS += -framework IOKit -framework DirectHW -L/opt/local/lib -L/usr/local/lib
Stefan Reinauerf79edb92009-01-26 01:23:31 +000052endif
Andriy Gapon65c1b862008-05-22 13:22:45 +000053ifeq ($(OS_ARCH), FreeBSD)
Stefan Reinauer2fea3f32010-01-21 20:26:30 +000054CPPFLAGS += -I/usr/local/include
Andriy Gapon65c1b862008-05-22 13:22:45 +000055LDFLAGS += -L/usr/local/lib
56endif
Carl-Daniel Hailfingerb63b0672010-07-02 17:12:50 +000057ifeq ($(OS_ARCH), OpenBSD)
58CPPFLAGS += -I/usr/local/include
59LDFLAGS += -L/usr/local/lib
60endif
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +000061ifeq ($(OS_ARCH), DOS)
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +000062EXEC_SUFFIX := .exe
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +000063CPPFLAGS += -I../libgetopt -I../libpci/include
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +000064# FIXME Check if we can achieve the same effect with -L../libgetopt -lgetopt
65LIBS += ../libgetopt/libgetopt.a
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +000066# Bus Pirate and Serprog are not supported under DOS (missing serial support).
67ifeq ($(CONFIG_BUSPIRATE_SPI), yes)
68UNSUPPORTED_FEATURES += CONFIG_BUSPIRATE_SPI=yes
69else
70override CONFIG_BUSPIRATE_SPI = no
71endif
72ifeq ($(CONFIG_SERPROG), yes)
73UNSUPPORTED_FEATURES += CONFIG_SERPROG=yes
74else
75override CONFIG_SERPROG = no
76endif
77# Dediprog and FT2232 are not supported under DOS (missing USB support).
78ifeq ($(CONFIG_DEDIPROG), yes)
79UNSUPPORTED_FEATURES += CONFIG_DEDIPROG=yes
80else
81override CONFIG_DEDIPROG = no
82endif
83ifeq ($(CONFIG_FT2232_SPI), yes)
84UNSUPPORTED_FEATURES += CONFIG_FT2232_SPI=yes
85else
86override CONFIG_FT2232_SPI = no
87endif
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +000088endif
Ollie Lho184a4042005-11-26 21:55:36 +000089
Uwe Hermannd5e85d62011-07-03 19:44:12 +000090ifeq ($(OS_ARCH), MINGW32_NT-5.1)
91# Explicitly set CC = gcc on MinGW, otherwise: "cc: command not found".
92CC = gcc
93# MinGW doesn't have the ffs() function, but we can use gcc's __builtin_ffs().
94CFLAGS += -Dffs=__builtin_ffs
95# libusb-win32/libftdi stuff is usually installed in /usr/local.
96CPPFLAGS += -I/usr/local/include
97LDFLAGS += -L/usr/local/lib
98# Serprog is not supported under Windows/MinGW (missing sockets support).
99ifeq ($(CONFIG_SERPROG), yes)
100UNSUPPORTED_FEATURES += CONFIG_SERPROG=yes
101else
102override CONFIG_SERPROG = no
103endif
104# For now we disable all PCI-based programmers on Windows/MinGW (no libpci).
105ifeq ($(CONFIG_INTERNAL), yes)
106UNSUPPORTED_FEATURES += CONFIG_INTERNAL=yes
107else
108override CONFIG_INTERNAL = no
109endif
110ifeq ($(CONFIG_RAYER_SPI), yes)
111UNSUPPORTED_FEATURES += CONFIG_RAYER_SPI=yes
112else
113override CONFIG_RAYER_SPI = no
114endif
115ifeq ($(CONFIG_NIC3COM), yes)
116UNSUPPORTED_FEATURES += CONFIG_NIC3COM=yes
117else
118override CONFIG_NIC3COM = no
119endif
120ifeq ($(CONFIG_GFXNVIDIA), yes)
121UNSUPPORTED_FEATURES += CONFIG_GFXNVIDIA=yes
122else
123override CONFIG_GFXNVIDIA = no
124endif
125ifeq ($(CONFIG_SATASII), yes)
126UNSUPPORTED_FEATURES += CONFIG_SATASII=yes
127else
128override CONFIG_SATASII = no
129endif
130ifeq ($(CONFIG_ATAHPT), yes)
131UNSUPPORTED_FEATURES += CONFIG_ATAHPT=yes
132else
133override CONFIG_ATAHPT = no
134endif
135ifeq ($(CONFIG_DRKAISER), yes)
136UNSUPPORTED_FEATURES += CONFIG_DRKAISER=yes
137else
138override CONFIG_DRKAISER = no
139endif
140ifeq ($(CONFIG_NICREALTEK), yes)
141UNSUPPORTED_FEATURES += CONFIG_NICREALTEK=yes
142else
143override CONFIG_NICREALTEK = no
144endif
145ifeq ($(CONFIG_NICNATSEMI), yes)
146UNSUPPORTED_FEATURES += CONFIG_NICNATSEMI=yes
147else
148override CONFIG_NICNATSEMI = no
149endif
150ifeq ($(CONFIG_NICINTEL), yes)
151UNSUPPORTED_FEATURES += CONFIG_NICINTEL=yes
152else
153override CONFIG_NICINTEL = no
154endif
155ifeq ($(CONFIG_NICINTEL_SPI), yes)
156UNSUPPORTED_FEATURES += CONFIG_NICINTEL_SPI=yes
157else
158override CONFIG_NICINTEL_SPI = no
159endif
160ifeq ($(CONFIG_OGP_SPI), yes)
161UNSUPPORTED_FEATURES += CONFIG_OGP_SPI=yes
162else
163override CONFIG_OGP_SPI = no
164endif
165ifeq ($(CONFIG_SATAMV), yes)
166UNSUPPORTED_FEATURES += CONFIG_SATAMV=yes
167else
168override CONFIG_SATAMV = no
169endif
170endif
171
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000172ifeq ($(OS_ARCH), libpayload)
173CC:=CC=i386-elf-gcc lpgcc
174AR:=i386-elf-ar
175RANLIB:=i386-elf-ranlib
176CPPFLAGS += -DSTANDALONE
177ifeq ($(CONFIG_DUMMY), yes)
178UNSUPPORTED_FEATURES += CONFIG_DUMMY=yes
179else
180override CONFIG_DUMMY = no
181endif
182ifeq ($(CONFIG_BUSPIRATE_SPI), yes)
183UNSUPPORTED_FEATURES += CONFIG_BUSPIRATE_SPI=yes
184else
185override CONFIG_BUSPIRATE_SPI = no
186endif
187ifeq ($(CONFIG_SERPROG), yes)
188UNSUPPORTED_FEATURES += CONFIG_SERPROG=yes
189else
190override CONFIG_SERPROG = no
191endif
192# Dediprog and FT2232 are not supported with libpayload (missing libusb support)
193ifeq ($(CONFIG_DEDIPROG), yes)
194UNSUPPORTED_FEATURES += CONFIG_DEDIPROG=yes
195else
196override CONFIG_DEDIPROG = no
197endif
198ifeq ($(CONFIG_FT2232_SPI), yes)
199UNSUPPORTED_FEATURES += CONFIG_FT2232_SPI=yes
200else
201override CONFIG_FT2232_SPI = no
202endif
203endif
204
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +0000205CHIP_OBJS = jedec.o stm50flw0x0x.o w39.o w29ee011.o \
Sean Nelson35727f72010-01-28 23:55:12 +0000206 sst28sf040.o m29f400bt.o 82802ab.o pm49fl00x.o \
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +0000207 sst49lfxxxc.o sst_fwhub.o flashchips.o spi.o spi25.o sharplhf00l04.o \
208 a25.o at25.o
Sean Nelson5d134642009-12-24 16:54:21 +0000209
210LIB_OBJS = layout.o
211
Sean Nelson51e97d72010-01-07 20:09:33 +0000212CLI_OBJS = flashrom.o cli_classic.o cli_output.o print.o
Sean Nelson5d134642009-12-24 16:54:21 +0000213
Carl-Daniel Hailfingercc1802d2010-01-06 10:21:00 +0000214PROGRAMMER_OBJS = udelay.o programmer.o
Ollie Lho184a4042005-11-26 21:55:36 +0000215
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000216all: pciutils features $(PROGRAM)$(EXEC_SUFFIX)
Ollie Lho184a4042005-11-26 21:55:36 +0000217
Carl-Daniel Hailfinger9e675852009-05-04 12:29:59 +0000218# Set the flashrom version string from the highest revision number
219# of the checked out flashrom files.
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000220# Note to packagers: Any tree exported with "make export" or "make tarball"
221# will not require subversion. The downloadable snapshots are already exported.
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000222SVNVERSION := $(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 +0000223
Carl-Daniel Hailfinger4deb8c62011-07-26 20:43:13 +0000224RELEASE := 0.9.4
Carl-Daniel Hailfinger48e5e092009-08-31 16:25:08 +0000225VERSION := $(RELEASE)-r$(SVNVERSION)
226RELEASENAME ?= $(VERSION)
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000227
228SVNDEF := -D'FLASHROM_VERSION="$(VERSION)"'
Bernhard Walle201bde32008-01-21 15:24:22 +0000229
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000230# Always enable internal/onboard support for now.
231CONFIG_INTERNAL ?= yes
232
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000233# Always enable serprog for now. Needs to be disabled on Windows.
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000234CONFIG_SERPROG ?= yes
235
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000236# RayeR SPIPGM hardware support
237CONFIG_RAYER_SPI ?= yes
238
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000239# Always enable 3Com NICs for now.
240CONFIG_NIC3COM ?= yes
241
Carl-Daniel Hailfingerbf3af292010-07-29 14:41:46 +0000242# Enable NVIDIA graphics cards. Note: write and erase do not work properly.
243CONFIG_GFXNVIDIA ?= yes
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000244
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000245# Always enable SiI SATA controllers for now.
246CONFIG_SATASII ?= yes
247
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000248# Highpoint (HPT) ATA/RAID controller support.
249# IMPORTANT: This code is not yet working!
250CONFIG_ATAHPT ?= no
251
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000252# Always enable FT2232 SPI dongles for now.
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000253CONFIG_FT2232_SPI ?= yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000254
255# Always enable dummy tracing for now.
256CONFIG_DUMMY ?= yes
257
258# Always enable Dr. Kaiser for now.
259CONFIG_DRKAISER ?= yes
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000260
Joerg Fischer5665ef32010-05-21 21:54:07 +0000261# Always enable Realtek NICs for now.
262CONFIG_NICREALTEK ?= yes
263
Andrew Morganc29c2e72010-06-07 22:37:54 +0000264# Disable National Semiconductor NICs until support is complete and tested.
265CONFIG_NICNATSEMI ?= no
266
Carl-Daniel Hailfingerb713d2e2011-05-08 00:24:18 +0000267# Always enable Intel NICs for now.
268CONFIG_NICINTEL ?= yes
269
Idwer Vollering004f4b72010-09-03 18:21:21 +0000270# Always enable SPI on Intel NICs for now.
271CONFIG_NICINTEL_SPI ?= yes
272
Mark Marshall90021f22010-12-03 14:48:11 +0000273# Always enable SPI on OGP cards for now.
274CONFIG_OGP_SPI ?= yes
275
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000276# Always enable Bus Pirate SPI for now.
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000277CONFIG_BUSPIRATE_SPI ?= yes
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000278
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000279# Disable Dediprog SF100 until support is complete and tested.
280CONFIG_DEDIPROG ?= no
281
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000282# Always enable Marvell SATA controllers for now.
283CONFIG_SATAMV ?= yes
284
Carl-Daniel Hailfinger6161ff12009-11-16 21:22:24 +0000285# Disable wiki printing by default. It is only useful if you have wiki access.
Uwe Hermann2db77a02010-06-04 17:07:39 +0000286CONFIG_PRINT_WIKI ?= no
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000287
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000288# Bitbanging SPI infrastructure, default off unless needed.
289ifeq ($(CONFIG_RAYER_SPI), yes)
290override CONFIG_BITBANG_SPI = yes
291else
292ifeq ($(CONFIG_INTERNAL), yes)
293override CONFIG_BITBANG_SPI = yes
294else
295ifeq ($(CONFIG_NICINTEL_SPI), yes)
296override CONFIG_BITBANG_SPI = yes
297else
Mark Marshall90021f22010-12-03 14:48:11 +0000298ifeq ($(CONFIG_OGP_SPI), yes)
299override CONFIG_BITBANG_SPI = yes
300else
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000301CONFIG_BITBANG_SPI ?= no
302endif
303endif
304endif
Mark Marshall90021f22010-12-03 14:48:11 +0000305endif
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000306
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000307ifeq ($(CONFIG_INTERNAL), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000308FEATURE_CFLAGS += -D'CONFIG_INTERNAL=1'
Carl-Daniel Hailfingerb5b161b2010-06-04 19:05:39 +0000309PROGRAMMER_OBJS += processor_enable.o chipset_enable.o board_enable.o cbtable.o dmi.o internal.o
Carl-Daniel Hailfinger91199a12011-07-07 06:59:18 +0000310ifeq ($(ARCH),"x86")
David Hendricks4e748392011-02-28 23:58:15 +0000311PROGRAMMER_OBJS += it87spi.o it85spi.o ichspi.o sb600spi.o wbsio_spi.o mcp6x_spi.o
Carl-Daniel Hailfinger91199a12011-07-07 06:59:18 +0000312else
313endif
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000314NEED_PCI := yes
315endif
316
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000317ifeq ($(CONFIG_SERPROG), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000318FEATURE_CFLAGS += -D'CONFIG_SERPROG=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000319PROGRAMMER_OBJS += serprog.o
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000320NEED_SERIAL := yes
321NEED_NET := yes
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000322endif
323
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000324ifeq ($(CONFIG_RAYER_SPI), yes)
325FEATURE_CFLAGS += -D'CONFIG_RAYER_SPI=1'
326PROGRAMMER_OBJS += rayer_spi.o
327# Actually, NEED_PCI is wrong. NEED_IOPORT_ACCESS would be more correct.
328NEED_PCI := yes
329endif
330
Carl-Daniel Hailfinger547872b2009-09-28 13:15:16 +0000331ifeq ($(CONFIG_BITBANG_SPI), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000332FEATURE_CFLAGS += -D'CONFIG_BITBANG_SPI=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000333PROGRAMMER_OBJS += bitbang_spi.o
Carl-Daniel Hailfinger547872b2009-09-28 13:15:16 +0000334endif
335
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000336ifeq ($(CONFIG_NIC3COM), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000337FEATURE_CFLAGS += -D'CONFIG_NIC3COM=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000338PROGRAMMER_OBJS += nic3com.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000339NEED_PCI := yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000340endif
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000341
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000342ifeq ($(CONFIG_GFXNVIDIA), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000343FEATURE_CFLAGS += -D'CONFIG_GFXNVIDIA=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000344PROGRAMMER_OBJS += gfxnvidia.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000345NEED_PCI := yes
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000346endif
347
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000348ifeq ($(CONFIG_SATASII), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000349FEATURE_CFLAGS += -D'CONFIG_SATASII=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000350PROGRAMMER_OBJS += satasii.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000351NEED_PCI := yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000352endif
353
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000354ifeq ($(CONFIG_ATAHPT), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000355FEATURE_CFLAGS += -D'CONFIG_ATAHPT=1'
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000356PROGRAMMER_OBJS += atahpt.o
357NEED_PCI := yes
358endif
359
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000360ifeq ($(CONFIG_FT2232_SPI), yes)
Carl-Daniel Hailfingerc1f00c52010-01-09 14:18:01 +0000361FTDILIBS := $(shell pkg-config --libs libftdi 2>/dev/null || printf "%s" "-lftdi -lusb")
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000362# This is a totally ugly hack.
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000363FEATURE_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 +0000364FEATURE_LIBS += $(shell LC_ALL=C grep -q "FTDISUPPORT := yes" .features && printf "%s" "$(FTDILIBS)")
Sean Nelson5d134642009-12-24 16:54:21 +0000365PROGRAMMER_OBJS += ft2232_spi.o
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000366endif
367
368ifeq ($(CONFIG_DUMMY), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000369FEATURE_CFLAGS += -D'CONFIG_DUMMY=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000370PROGRAMMER_OBJS += dummyflasher.o
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000371endif
372
373ifeq ($(CONFIG_DRKAISER), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000374FEATURE_CFLAGS += -D'CONFIG_DRKAISER=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000375PROGRAMMER_OBJS += drkaiser.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000376NEED_PCI := yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000377endif
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000378
Joerg Fischer5665ef32010-05-21 21:54:07 +0000379ifeq ($(CONFIG_NICREALTEK), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000380FEATURE_CFLAGS += -D'CONFIG_NICREALTEK=1'
Joerg Fischer5665ef32010-05-21 21:54:07 +0000381PROGRAMMER_OBJS += nicrealtek.o
382NEED_PCI := yes
383endif
384
Andrew Morganc29c2e72010-06-07 22:37:54 +0000385ifeq ($(CONFIG_NICNATSEMI), yes)
386FEATURE_CFLAGS += -D'CONFIG_NICNATSEMI=1'
387PROGRAMMER_OBJS += nicnatsemi.o
388NEED_PCI := yes
389endif
390
Carl-Daniel Hailfingerb713d2e2011-05-08 00:24:18 +0000391ifeq ($(CONFIG_NICINTEL), yes)
392FEATURE_CFLAGS += -D'CONFIG_NICINTEL=1'
393PROGRAMMER_OBJS += nicintel.o
394NEED_PCI := yes
395endif
396
Idwer Vollering004f4b72010-09-03 18:21:21 +0000397ifeq ($(CONFIG_NICINTEL_SPI), yes)
398FEATURE_CFLAGS += -D'CONFIG_NICINTEL_SPI=1'
399PROGRAMMER_OBJS += nicintel_spi.o
400NEED_PCI := yes
401endif
402
Mark Marshall90021f22010-12-03 14:48:11 +0000403ifeq ($(CONFIG_OGP_SPI), yes)
404FEATURE_CFLAGS += -D'CONFIG_OGP_SPI=1'
405PROGRAMMER_OBJS += ogp_spi.o
406NEED_PCI := yes
407endif
408
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000409ifeq ($(CONFIG_BUSPIRATE_SPI), yes)
410FEATURE_CFLAGS += -D'CONFIG_BUSPIRATE_SPI=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000411PROGRAMMER_OBJS += buspirate_spi.o
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000412NEED_SERIAL := yes
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000413endif
414
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000415ifeq ($(CONFIG_DEDIPROG), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000416FEATURE_CFLAGS += -D'CONFIG_DEDIPROG=1'
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000417FEATURE_LIBS += -lusb
418PROGRAMMER_OBJS += dediprog.o
419endif
420
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000421ifeq ($(CONFIG_SATAMV), yes)
422FEATURE_CFLAGS += -D'CONFIG_SATAMV=1'
423PROGRAMMER_OBJS += satamv.o
424NEED_PCI := yes
425endif
426
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000427ifeq ($(NEED_SERIAL), yes)
Sean Nelson5d134642009-12-24 16:54:21 +0000428LIB_OBJS += serial.o
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000429endif
430
431ifeq ($(NEED_NET), yes)
432ifeq ($(OS_ARCH), SunOS)
433LIBS += -lsocket
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000434endif
Carl-Daniel Hailfingere51ea102009-11-23 19:20:11 +0000435endif
436
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000437ifeq ($(NEED_PCI), yes)
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000438CHECK_LIBPCI = yes
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000439FEATURE_CFLAGS += -D'NEED_PCI=1'
Carl-Daniel Hailfingerfb0828f2010-02-12 19:35:25 +0000440PROGRAMMER_OBJS += pcidev.o physmap.o hwaccess.o
Jonathan A. Kollasch3646c8f2010-01-08 21:18:08 +0000441ifeq ($(OS_ARCH), NetBSD)
Carl-Daniel Hailfinger460b2822010-06-04 23:24:57 +0000442# The libpci we want is called libpciutils on NetBSD and needs NetBSD libpci.
443LIBS += -lpciutils -lpci
444# For (i386|x86_64)_iopl(2).
445LIBS += -l$(shell uname -p)
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000446else
447ifeq ($(OS_ARCH), DOS)
448# FIXME There needs to be a better way to do this
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000449LIBS += ../libpci/lib/libpci.a
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000450else
451LIBS += -lpci
Carl-Daniel Hailfingerb63b0672010-07-02 17:12:50 +0000452ifeq ($(OS_ARCH), OpenBSD)
453# For (i386|amd64)_iopl(2).
454LIBS += -l$(shell uname -m)
455endif
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000456endif
Jonathan A. Kollasch3646c8f2010-01-08 21:18:08 +0000457endif
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000458endif
459
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000460ifeq ($(CONFIG_PRINT_WIKI), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000461FEATURE_CFLAGS += -D'CONFIG_PRINT_WIKI=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000462CLI_OBJS += print_wiki.o
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000463endif
464
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +0000465FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "UTSNAME := yes" .features && printf "%s" "-D'HAVE_UTSNAME=1'")
466
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000467# We could use PULLED_IN_LIBS, but that would be ugly.
468FEATURE_LIBS += $(shell LC_ALL=C grep -q "NEEDLIBZ := yes" .libdeps && printf "%s" "-lz")
469
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000470LIBFLASHROM_OBJS = $(CHIP_OBJS) $(PROGRAMMER_OBJS) $(LIB_OBJS)
471OBJS = $(CLI_OBJS) $(LIBFLASHROM_OBJS)
Sean Nelson5d134642009-12-24 16:54:21 +0000472
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000473$(PROGRAM)$(EXEC_SUFFIX): $(OBJS)
474 $(CC) $(LDFLAGS) -o $(PROGRAM)$(EXEC_SUFFIX) $(OBJS) $(FEATURE_LIBS) $(LIBS)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000475
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000476libflashrom.a: $(LIBFLASHROM_OBJS)
477 $(AR) rcs $@ $^
478 $(RANLIB) $@
479
Carl-Daniel Hailfinger8ef7dce2009-07-10 20:19:48 +0000480# TAROPTIONS reduces information leakage from the packager's system.
481# If other tar programs support command line arguments for setting uid/gid of
482# stored files, they can be handled here as well.
483TAROPTIONS = $(shell LC_ALL=C tar --version|grep -q GNU && echo "--owner=root --group=root")
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000484
Paul Fox05dfbe62009-06-16 21:08:06 +0000485%.o: %.c .features
Stefan Reinauere2f01582010-06-07 11:08:07 +0000486 $(CC) -MMD $(CFLAGS) $(CPPFLAGS) $(FEATURE_CFLAGS) $(SVNDEF) -o $@ -c $<
Clark Rawlins02016f72008-02-14 23:22:20 +0000487
Carl-Daniel Hailfingera0020df2010-05-30 22:35:14 +0000488# Make sure to add all names of generated binaries here.
489# This includes all frontends and libflashrom.
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000490# We don't use EXEC_SUFFIX here because we want to clean everything.
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000491clean:
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000492 rm -f $(PROGRAM) $(PROGRAM).exe libflashrom.a *.o *.d
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000493
Ollie Lho184a4042005-11-26 21:55:36 +0000494distclean: clean
Stefan Reinauere2f01582010-06-07 11:08:07 +0000495 rm -f .features .libdeps
Christian Ruppertdb9d9f42009-05-14 14:17:07 +0000496
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000497strip: $(PROGRAM)$(EXEC_SUFFIX)
498 $(STRIP) $(STRIP_ARGS) $(PROGRAM)$(EXEC_SUFFIX)
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000499
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000500compiler: featuresavailable
Paul Fox05dfbe62009-06-16 21:08:06 +0000501 @printf "Checking for a C compiler... "
Carl-Daniel Hailfinger4cb7a962009-06-16 09:31:51 +0000502 @$(shell ( echo "int main(int argc, char **argv)"; \
Stefan Taunerb23df712011-06-26 18:28:58 +0000503 echo "{ (void) argc; (void) argv; return 0; }"; ) > .test.c )
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000504 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .test.c -o .test$(EXEC_SUFFIX) >/dev/null && \
Carl-Daniel Hailfinger4cb7a962009-06-16 09:31:51 +0000505 echo "found." || ( echo "not found."; \
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000506 rm -f .test.c .test$(EXEC_SUFFIX); exit 1)
507 @rm -f .test.c .test$(EXEC_SUFFIX)
Carl-Daniel Hailfinger91199a12011-07-07 06:59:18 +0000508 @printf "ARCH is "
509 @# FreeBSD wc will output extraneous whitespace.
510 @echo $(ARCH)|wc -l|grep -q '^[[:blank:]]*1[[:blank:]]*$$' || \
511 ( echo "unknown. Aborting."; exit 1)
512 @printf "%s\n" '$(ARCH)'
Carl-Daniel Hailfinger4cb7a962009-06-16 09:31:51 +0000513
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000514ifeq ($(CHECK_LIBPCI), yes)
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000515pciutils: compiler
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000516 @printf "Checking for libpci headers... "
Carl-Daniel Hailfinger72376832010-06-25 13:18:48 +0000517 @# Avoid a failing test due to libpci header symbol shadowing breakage
518 @$(shell ( echo "#define index shadow_workaround_index"; \
519 echo "#include <pci/pci.h>"; \
Stefan Reinauer53e96252005-12-01 16:19:24 +0000520 echo "struct pci_access *pacc;"; \
521 echo "int main(int argc, char **argv)"; \
Stefan Taunerb23df712011-06-26 18:28:58 +0000522 echo "{ (void) argc; (void) argv; pacc = pci_alloc(); return 0; }"; ) > .test.c )
Stefan Reinauer2fea3f32010-01-21 20:26:30 +0000523 @$(CC) -c $(CPPFLAGS) $(CFLAGS) .test.c -o .test.o >/dev/null 2>&1 && \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000524 echo "found." || ( echo "not found."; echo; \
525 echo "Please install libpci headers (package pciutils-devel)."; \
526 echo "See README for more information."; echo; \
527 rm -f .test.c .test.o; exit 1)
Carl-Daniel Hailfinger9979eac2010-03-22 12:29:45 +0000528 @printf "Checking if libpci is present and sufficient... "
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000529 @printf "" > .libdeps
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000530 @$(CC) $(LDFLAGS) .test.o -o .test$(EXEC_SUFFIX) $(LIBS) >/dev/null 2>&1 && \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000531 echo "yes." || ( echo "no."; \
Carl-Daniel Hailfinger9979eac2010-03-22 12:29:45 +0000532 printf "Checking if libz+libpci are present and sufficient..."; \
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000533 $(CC) $(LDFLAGS) .test.o -o .test$(EXEC_SUFFIX) $(LIBS) -lz >/dev/null 2>&1 && \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000534 ( echo "yes."; echo "NEEDLIBZ := yes" > .libdeps ) || ( echo "no."; echo; \
Carl-Daniel Hailfinger9979eac2010-03-22 12:29:45 +0000535 echo "Please install libpci (package pciutils) and/or libz."; \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000536 echo "See README for more information."; echo; \
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000537 rm -f .test.c .test.o .test$(EXEC_SUFFIX); exit 1) )
538 @rm -f .test.c .test.o .test$(EXEC_SUFFIX)
Carl-Daniel Hailfinger8a59ff02009-12-24 03:33:11 +0000539else
540pciutils: compiler
541 @printf "" > .libdeps
542endif
Stefan Reinauer53e96252005-12-01 16:19:24 +0000543
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000544.features: features
545
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000546# If a user does not explicitly request a non-working feature, we should
547# silently disable it. However, if a non-working (does not compile) feature
548# is explicitly requested, we should bail out with a descriptive error message.
549ifeq ($(UNSUPPORTED_FEATURES), )
550featuresavailable:
551else
552featuresavailable:
553 @echo "The following features are unavailable on your machine: $(UNSUPPORTED_FEATURES)"
554 @false
555endif
556
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000557ifeq ($(CONFIG_FT2232_SPI), yes)
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000558features: compiler
559 @echo "FEATURES := yes" > .features.tmp
Paul Fox05dfbe62009-06-16 21:08:06 +0000560 @printf "Checking for FTDI support... "
561 @$(shell ( echo "#include <ftdi.h>"; \
562 echo "struct ftdi_context *ftdic = NULL;"; \
563 echo "int main(int argc, char **argv)"; \
Stefan Taunerb23df712011-06-26 18:28:58 +0000564 echo "{ (void) argc; (void) argv; return ftdi_init(ftdic); }"; ) > .featuretest.c )
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000565 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) $(FTDILIBS) $(LIBS) >/dev/null 2>&1 && \
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000566 ( echo "found."; echo "FTDISUPPORT := yes" >> .features.tmp ) || \
567 ( echo "not found."; echo "FTDISUPPORT := no" >> .features.tmp )
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +0000568 @printf "Checking for utsname support... "
569 @$(shell ( echo "#include <sys/utsname.h>"; \
570 echo "struct utsname osinfo;"; \
571 echo "int main(int argc, char **argv)"; \
Stefan Taunerb23df712011-06-26 18:28:58 +0000572 echo "{ (void) argc; (void) argv; uname (&osinfo); return 0; }"; ) > .featuretest.c )
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000573 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) >/dev/null 2>&1 && \
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +0000574 ( echo "found."; echo "UTSNAME := yes" >> .features.tmp ) || \
575 ( echo "not found."; echo "UTSNAME := no" >> .features.tmp )
Paul Fox05dfbe62009-06-16 21:08:06 +0000576 @$(DIFF) -q .features.tmp .features >/dev/null 2>&1 && rm .features.tmp || mv .features.tmp .features
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000577 @rm -f .featuretest.c .featuretest$(EXEC_SUFFIX)
Carl-Daniel Hailfinger8a59ff02009-12-24 03:33:11 +0000578else
579features: compiler
Carl-Daniel Hailfingerc1f00c52010-01-09 14:18:01 +0000580 @echo "FEATURES := yes" > .features.tmp
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +0000581 @printf "Checking for utsname support... "
582 @$(shell ( echo "#include <sys/utsname.h>"; \
583 echo "struct utsname osinfo;"; \
584 echo "int main(int argc, char **argv)"; \
Stefan Taunerb23df712011-06-26 18:28:58 +0000585 echo "{ (void) argc; (void) argv; uname (&osinfo); return 0; }"; ) > .featuretest.c )
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000586 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) >/dev/null 2>&1 && \
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +0000587 ( echo "found."; echo "UTSNAME := yes" >> .features.tmp ) || \
588 ( echo "not found."; echo "UTSNAME := no" >> .features.tmp )
Carl-Daniel Hailfingerc1f00c52010-01-09 14:18:01 +0000589 @$(DIFF) -q .features.tmp .features >/dev/null 2>&1 && rm .features.tmp || mv .features.tmp .features
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000590 @rm -f .featuretest.c .featuretest$(EXEC_SUFFIX)
Carl-Daniel Hailfinger8a59ff02009-12-24 03:33:11 +0000591endif
Paul Fox05dfbe62009-06-16 21:08:06 +0000592
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000593install: $(PROGRAM)$(EXEC_SUFFIX)
Uwe Hermannc2a9c9c2009-05-14 14:51:14 +0000594 mkdir -p $(DESTDIR)$(PREFIX)/sbin
Uwe Hermann56b2cb02009-05-21 15:59:58 +0000595 mkdir -p $(DESTDIR)$(MANDIR)/man8
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000596 $(INSTALL) -m 0755 $(PROGRAM)$(EXEC_SUFFIX) $(DESTDIR)$(PREFIX)/sbin
Uwe Hermann56b2cb02009-05-21 15:59:58 +0000597 $(INSTALL) -m 0644 $(PROGRAM).8 $(DESTDIR)$(MANDIR)/man8
Uwe Hermannc113b572006-12-14 00:59:41 +0000598
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000599export:
Carl-Daniel Hailfinger48e5e092009-08-31 16:25:08 +0000600 @rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME)
601 @svn export -r BASE . $(EXPORTDIR)/flashrom-$(RELEASENAME)
602 @sed "s/^SVNVERSION.*/SVNVERSION := $(SVNVERSION)/" Makefile >$(EXPORTDIR)/flashrom-$(RELEASENAME)/Makefile
603 @LC_ALL=C svn log >$(EXPORTDIR)/flashrom-$(RELEASENAME)/ChangeLog
604 @echo Exported $(EXPORTDIR)/flashrom-$(RELEASENAME)/
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000605
606tarball: export
Carl-Daniel Hailfinger48e5e092009-08-31 16:25:08 +0000607 @tar cjf $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2 -C $(EXPORTDIR)/ $(TAROPTIONS) flashrom-$(RELEASENAME)/
608 @rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME)
609 @echo Created $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000610
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000611djgpp-dos: clean
612 make CC=i586-pc-msdosdjgpp-gcc STRIP=i586-pc-msdosdjgpp-strip WARNERROR=no OS_ARCH=DOS
613
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000614.PHONY: all clean distclean compiler pciutils features export tarball dos featuresavailable
Ollie Lho184a4042005-11-26 21:55:36 +0000615
Stefan Reinauere2f01582010-06-07 11:08:07 +0000616-include $(OBJS:.o=.d)