blob: 7bc550955dad1a95480b9123dc053afbf1e6f92d [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
45LDFLAGS += -framework IOKit -framework DirectIO -L/opt/local/lib -L/usr/local/lib
Stefan Reinauerf79edb92009-01-26 01:23:31 +000046endif
Andriy Gapon65c1b862008-05-22 13:22:45 +000047ifeq ($(OS_ARCH), FreeBSD)
Stefan Reinauer2fea3f32010-01-21 20:26:30 +000048CPPFLAGS += -I/usr/local/include
Andriy Gapon65c1b862008-05-22 13:22:45 +000049LDFLAGS += -L/usr/local/lib
50endif
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +000051ifeq ($(OS_ARCH), DOS)
52CPPFLAGS += -I../libgetopt -I../libpci/include
53# Bus Pirate and Serprog are not supported under DOS.
54CONFIG_BUSPIRATESPI = no
55CONFIG_SERPROG = no
56endif
Ollie Lho184a4042005-11-26 21:55:36 +000057
Sean Nelson28accc22010-03-19 18:47:06 +000058CHIP_OBJS = jedec.o stm50flw0x0x.o w39v040c.o w39v080fa.o w29ee011.o \
Sean Nelson35727f72010-01-28 23:55:12 +000059 sst28sf040.o m29f400bt.o 82802ab.o pm49fl00x.o \
Sean Nelson14ba6682010-02-26 05:48:29 +000060 sst49lfxxxc.o sst_fwhub.o flashchips.o spi.o spi25.o
Sean Nelson5d134642009-12-24 16:54:21 +000061
62LIB_OBJS = layout.o
63
Sean Nelson51e97d72010-01-07 20:09:33 +000064CLI_OBJS = flashrom.o cli_classic.o cli_output.o print.o
Sean Nelson5d134642009-12-24 16:54:21 +000065
Carl-Daniel Hailfingercc1802d2010-01-06 10:21:00 +000066PROGRAMMER_OBJS = udelay.o programmer.o
Ollie Lho184a4042005-11-26 21:55:36 +000067
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +000068all: pciutils features dep $(PROGRAM)
Ollie Lho184a4042005-11-26 21:55:36 +000069
Carl-Daniel Hailfinger9e675852009-05-04 12:29:59 +000070# Set the flashrom version string from the highest revision number
71# of the checked out flashrom files.
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +000072# Note to packagers: Any tree exported with "make export" or "make tarball"
73# will not require subversion. The downloadable snapshots are already exported.
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000074SVNVERSION := $(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 +000075
Carl-Daniel Hailfinger6d1dea12010-05-19 16:46:52 +000076RELEASE := 0.9.2
Carl-Daniel Hailfinger48e5e092009-08-31 16:25:08 +000077VERSION := $(RELEASE)-r$(SVNVERSION)
78RELEASENAME ?= $(VERSION)
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +000079
80SVNDEF := -D'FLASHROM_VERSION="$(VERSION)"'
Bernhard Walle201bde32008-01-21 15:24:22 +000081
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +000082# Always enable internal/onboard support for now.
83CONFIG_INTERNAL ?= yes
84
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +000085# Always enable serprog for now. Needs to be disabled on Windows.
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +000086CONFIG_SERPROG ?= yes
87
Carl-Daniel Hailfinger547872b2009-09-28 13:15:16 +000088# Bitbanging SPI infrastructure is not used yet.
89CONFIG_BITBANG_SPI ?= no
90
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +000091# Always enable 3Com NICs for now.
92CONFIG_NIC3COM ?= yes
93
Uwe Hermann4d679502009-10-01 14:11:43 +000094# Disable NVIDIA graphics cards for now, write/erase don't work properly.
95CONFIG_GFXNVIDIA ?= no
Uwe Hermann2bc98f62009-09-30 18:29:55 +000096
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +000097# Always enable SiI SATA controllers for now.
98CONFIG_SATASII ?= yes
99
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000100# Highpoint (HPT) ATA/RAID controller support.
101# IMPORTANT: This code is not yet working!
102CONFIG_ATAHPT ?= no
103
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000104# Always enable FT2232 SPI dongles for now.
105CONFIG_FT2232SPI ?= yes
106
107# Always enable dummy tracing for now.
108CONFIG_DUMMY ?= yes
109
110# Always enable Dr. Kaiser for now.
111CONFIG_DRKAISER ?= yes
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000112
Joerg Fischer5665ef32010-05-21 21:54:07 +0000113# Always enable Realtek NICs for now.
114CONFIG_NICREALTEK ?= yes
115
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000116# Always enable Bus Pirate SPI for now.
117CONFIG_BUSPIRATESPI ?= yes
118
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000119# Disable Dediprog SF100 until support is complete and tested.
120CONFIG_DEDIPROG ?= no
121
Carl-Daniel Hailfinger6161ff12009-11-16 21:22:24 +0000122# Disable wiki printing by default. It is only useful if you have wiki access.
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000123CONFIG_PRINT_WIKI ?= no
124
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000125ifeq ($(CONFIG_INTERNAL), yes)
126FEATURE_CFLAGS += -D'INTERNAL_SUPPORT=1'
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000127PROGRAMMER_OBJS += chipset_enable.o board_enable.o cbtable.o dmi.o internal.o
128# FIXME: The PROGRAMMER_OBJS below should only be included on x86.
129PROGRAMMER_OBJS += it87spi.o ichspi.o sb600spi.o wbsio_spi.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000130NEED_PCI := yes
131endif
132
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000133ifeq ($(CONFIG_SERPROG), yes)
134FEATURE_CFLAGS += -D'SERPROG_SUPPORT=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000135PROGRAMMER_OBJS += serprog.o
Carl-Daniel Hailfinger10572fa2009-08-17 16:30:53 +0000136ifeq ($(OS_ARCH), SunOS)
137LIBS += -lsocket
138endif
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000139endif
140
Carl-Daniel Hailfinger547872b2009-09-28 13:15:16 +0000141ifeq ($(CONFIG_BITBANG_SPI), yes)
142FEATURE_CFLAGS += -D'BITBANG_SPI_SUPPORT=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000143PROGRAMMER_OBJS += bitbang_spi.o
Carl-Daniel Hailfinger547872b2009-09-28 13:15:16 +0000144endif
145
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000146ifeq ($(CONFIG_NIC3COM), yes)
147FEATURE_CFLAGS += -D'NIC3COM_SUPPORT=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000148PROGRAMMER_OBJS += nic3com.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000149NEED_PCI := yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000150endif
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000151
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000152ifeq ($(CONFIG_GFXNVIDIA), yes)
153FEATURE_CFLAGS += -D'GFXNVIDIA_SUPPORT=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000154PROGRAMMER_OBJS += gfxnvidia.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000155NEED_PCI := yes
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000156endif
157
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000158ifeq ($(CONFIG_SATASII), yes)
159FEATURE_CFLAGS += -D'SATASII_SUPPORT=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000160PROGRAMMER_OBJS += satasii.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000161NEED_PCI := yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000162endif
163
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000164ifeq ($(CONFIG_ATAHPT), yes)
165FEATURE_CFLAGS += -D'ATAHPT_SUPPORT=1'
166PROGRAMMER_OBJS += atahpt.o
167NEED_PCI := yes
168endif
169
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000170ifeq ($(CONFIG_FT2232SPI), yes)
Carl-Daniel Hailfingerc1f00c52010-01-09 14:18:01 +0000171FTDILIBS := $(shell pkg-config --libs libftdi 2>/dev/null || printf "%s" "-lftdi -lusb")
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000172# This is a totally ugly hack.
173FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "FTDISUPPORT := yes" .features && printf "%s" "-D'FT2232_SPI_SUPPORT=1'")
Jörg Mayer8776db22009-11-16 14:05:13 +0000174FEATURE_LIBS += $(shell LC_ALL=C grep -q "FTDISUPPORT := yes" .features && printf "%s" "$(FTDILIBS)")
Sean Nelson5d134642009-12-24 16:54:21 +0000175PROGRAMMER_OBJS += ft2232_spi.o
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000176endif
177
178ifeq ($(CONFIG_DUMMY), yes)
179FEATURE_CFLAGS += -D'DUMMY_SUPPORT=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000180PROGRAMMER_OBJS += dummyflasher.o
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000181endif
182
183ifeq ($(CONFIG_DRKAISER), yes)
184FEATURE_CFLAGS += -D'DRKAISER_SUPPORT=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000185PROGRAMMER_OBJS += drkaiser.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000186NEED_PCI := yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000187endif
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000188
Joerg Fischer5665ef32010-05-21 21:54:07 +0000189ifeq ($(CONFIG_NICREALTEK), yes)
190FEATURE_CFLAGS += -D'NICREALTEK_SUPPORT=1'
191PROGRAMMER_OBJS += nicrealtek.o
192NEED_PCI := yes
193endif
194
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000195ifeq ($(CONFIG_BUSPIRATESPI), yes)
196FEATURE_CFLAGS += -D'BUSPIRATE_SPI_SUPPORT=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000197PROGRAMMER_OBJS += buspirate_spi.o
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000198endif
199
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000200ifeq ($(CONFIG_DEDIPROG), yes)
201FEATURE_CFLAGS += -D'DEDIPROG_SUPPORT=1'
202FEATURE_LIBS += -lusb
203PROGRAMMER_OBJS += dediprog.o
204endif
205
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000206# Ugly, but there's no elif/elseif.
Carl-Daniel Hailfingere51ea102009-11-23 19:20:11 +0000207ifeq ($(CONFIG_SERPROG), yes)
Sean Nelson5d134642009-12-24 16:54:21 +0000208LIB_OBJS += serial.o
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000209else
210ifeq ($(CONFIG_BUSPIRATESPI), yes)
Sean Nelson5d134642009-12-24 16:54:21 +0000211LIB_OBJS += serial.o
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000212endif
Carl-Daniel Hailfingere51ea102009-11-23 19:20:11 +0000213endif
214
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000215ifeq ($(NEED_PCI), yes)
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000216CHECK_LIBPCI = yes
217endif
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000218
219ifeq ($(NEED_PCI), yes)
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000220FEATURE_CFLAGS += -D'NEED_PCI=1'
Carl-Daniel Hailfingerfb0828f2010-02-12 19:35:25 +0000221PROGRAMMER_OBJS += pcidev.o physmap.o hwaccess.o
Jonathan A. Kollasch3646c8f2010-01-08 21:18:08 +0000222ifeq ($(OS_ARCH), NetBSD)
223LIBS += -lpciutils # The libpci we want.
Jonathan A. Kollasch879b3512010-02-14 01:00:36 +0000224LIBS += -l$(shell uname -p) # For (i386|x86_64)_iopl(2).
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000225else
226ifeq ($(OS_ARCH), DOS)
227# FIXME There needs to be a better way to do this
228LIBS += ../libpci/lib/libpci.a ../libgetopt/libgetopt.a
229else
230LIBS += -lpci
231endif
Jonathan A. Kollasch3646c8f2010-01-08 21:18:08 +0000232endif
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000233endif
234
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000235ifeq ($(CONFIG_PRINT_WIKI), yes)
236FEATURE_CFLAGS += -D'PRINT_WIKI_SUPPORT=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000237CLI_OBJS += print_wiki.o
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000238endif
239
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +0000240FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "UTSNAME := yes" .features && printf "%s" "-D'HAVE_UTSNAME=1'")
241
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000242# We could use PULLED_IN_LIBS, but that would be ugly.
243FEATURE_LIBS += $(shell LC_ALL=C grep -q "NEEDLIBZ := yes" .libdeps && printf "%s" "-lz")
244
Sean Nelson5d134642009-12-24 16:54:21 +0000245OBJS = $(CHIP_OBJS) $(CLI_OBJS) $(PROGRAMMER_OBJS) $(LIB_OBJS)
246
Ollie Lho184a4042005-11-26 21:55:36 +0000247$(PROGRAM): $(OBJS)
Jörg Mayer8776db22009-11-16 14:05:13 +0000248 $(CC) $(LDFLAGS) -o $(PROGRAM) $(OBJS) $(FEATURE_LIBS) $(LIBS)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000249
Carl-Daniel Hailfinger8ef7dce2009-07-10 20:19:48 +0000250# TAROPTIONS reduces information leakage from the packager's system.
251# If other tar programs support command line arguments for setting uid/gid of
252# stored files, they can be handled here as well.
253TAROPTIONS = $(shell LC_ALL=C tar --version|grep -q GNU && echo "--owner=root --group=root")
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000254
Paul Fox05dfbe62009-06-16 21:08:06 +0000255%.o: %.c .features
Carl-Daniel Hailfingerbdb63dc2009-06-23 11:48:37 +0000256 $(CC) $(CFLAGS) $(CPPFLAGS) $(FEATURE_CFLAGS) $(SVNDEF) -o $@ -c $<
Clark Rawlins02016f72008-02-14 23:22:20 +0000257
Carl-Daniel Hailfingera0020df2010-05-30 22:35:14 +0000258# Make sure to add all names of generated binaries here.
259# This includes all frontends and libflashrom.
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000260clean:
Carl-Daniel Hailfingera0020df2010-05-30 22:35:14 +0000261 rm -f $(PROGRAM) $(PROGRAM).exe *.o
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000262
Ollie Lho184a4042005-11-26 21:55:36 +0000263distclean: clean
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000264 rm -f .dependencies .features .libdeps
Peter Stuge681b1902008-06-22 02:00:39 +0000265
Ollie Lho184a4042005-11-26 21:55:36 +0000266dep:
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000267 @$(CC) $(CPPFLAGS) $(SVNDEF) -MM $(OBJS:.o=.c) > .dependencies
Christian Ruppertdb9d9f42009-05-14 14:17:07 +0000268
269strip: $(PROGRAM)
270 $(STRIP) $(STRIP_ARGS) $(PROGRAM)
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000271
Carl-Daniel Hailfinger4cb7a962009-06-16 09:31:51 +0000272compiler:
Paul Fox05dfbe62009-06-16 21:08:06 +0000273 @printf "Checking for a C compiler... "
Carl-Daniel Hailfinger4cb7a962009-06-16 09:31:51 +0000274 @$(shell ( echo "int main(int argc, char **argv)"; \
275 echo "{ return 0; }"; ) > .test.c )
Stefan Reinauer2fea3f32010-01-21 20:26:30 +0000276 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .test.c -o .test >/dev/null && \
Carl-Daniel Hailfinger4cb7a962009-06-16 09:31:51 +0000277 echo "found." || ( echo "not found."; \
278 rm -f .test.c .test; exit 1)
279 @rm -f .test.c .test
280
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000281ifeq ($(CHECK_LIBPCI), yes)
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000282pciutils: compiler
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000283 @printf "Checking for libpci headers... "
Stefan Reinauer53e96252005-12-01 16:19:24 +0000284 @$(shell ( echo "#include <pci/pci.h>"; \
285 echo "struct pci_access *pacc;"; \
286 echo "int main(int argc, char **argv)"; \
287 echo "{ pacc = pci_alloc(); return 0; }"; ) > .test.c )
Stefan Reinauer2fea3f32010-01-21 20:26:30 +0000288 @$(CC) -c $(CPPFLAGS) $(CFLAGS) .test.c -o .test.o >/dev/null 2>&1 && \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000289 echo "found." || ( echo "not found."; echo; \
290 echo "Please install libpci headers (package pciutils-devel)."; \
291 echo "See README for more information."; echo; \
292 rm -f .test.c .test.o; exit 1)
Carl-Daniel Hailfinger9979eac2010-03-22 12:29:45 +0000293 @printf "Checking if libpci is present and sufficient... "
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000294 @printf "" > .libdeps
Carl-Daniel Hailfinger9979eac2010-03-22 12:29:45 +0000295 @$(CC) $(LDFLAGS) .test.o -o .test $(LIBS) >/dev/null 2>&1 && \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000296 echo "yes." || ( echo "no."; \
Carl-Daniel Hailfinger9979eac2010-03-22 12:29:45 +0000297 printf "Checking if libz+libpci are present and sufficient..."; \
298 $(CC) $(LDFLAGS) .test.o -o .test $(LIBS) -lz >/dev/null 2>&1 && \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000299 ( echo "yes."; echo "NEEDLIBZ := yes" > .libdeps ) || ( echo "no."; echo; \
Carl-Daniel Hailfinger9979eac2010-03-22 12:29:45 +0000300 echo "Please install libpci (package pciutils) and/or libz."; \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000301 echo "See README for more information."; echo; \
302 rm -f .test.c .test.o .test; exit 1) )
Carl-Daniel Hailfinger9979eac2010-03-22 12:29:45 +0000303 @rm -f .test.c .test.o .test
Carl-Daniel Hailfinger8a59ff02009-12-24 03:33:11 +0000304else
305pciutils: compiler
306 @printf "" > .libdeps
307endif
Stefan Reinauer53e96252005-12-01 16:19:24 +0000308
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000309.features: features
310
Carl-Daniel Hailfinger8a59ff02009-12-24 03:33:11 +0000311ifeq ($(CONFIG_FT2232SPI), yes)
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000312features: compiler
313 @echo "FEATURES := yes" > .features.tmp
Paul Fox05dfbe62009-06-16 21:08:06 +0000314 @printf "Checking for FTDI support... "
315 @$(shell ( echo "#include <ftdi.h>"; \
316 echo "struct ftdi_context *ftdic = NULL;"; \
317 echo "int main(int argc, char **argv)"; \
318 echo "{ return ftdi_init(ftdic); }"; ) > .featuretest.c )
Stefan Reinauer2fea3f32010-01-21 20:26:30 +0000319 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest $(FTDILIBS) $(LIBS) >/dev/null 2>&1 && \
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000320 ( echo "found."; echo "FTDISUPPORT := yes" >> .features.tmp ) || \
321 ( echo "not found."; echo "FTDISUPPORT := no" >> .features.tmp )
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +0000322 @printf "Checking for utsname support... "
323 @$(shell ( echo "#include <sys/utsname.h>"; \
324 echo "struct utsname osinfo;"; \
325 echo "int main(int argc, char **argv)"; \
326 echo "{ uname (&osinfo); return 0; }"; ) > .featuretest.c )
327 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest >/dev/null 2>&1 && \
328 ( echo "found."; echo "UTSNAME := yes" >> .features.tmp ) || \
329 ( echo "not found."; echo "UTSNAME := no" >> .features.tmp )
Paul Fox05dfbe62009-06-16 21:08:06 +0000330 @$(DIFF) -q .features.tmp .features >/dev/null 2>&1 && rm .features.tmp || mv .features.tmp .features
331 @rm -f .featuretest.c .featuretest
Carl-Daniel Hailfinger8a59ff02009-12-24 03:33:11 +0000332else
333features: compiler
Carl-Daniel Hailfingerc1f00c52010-01-09 14:18:01 +0000334 @echo "FEATURES := yes" > .features.tmp
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +0000335 @printf "Checking for utsname support... "
336 @$(shell ( echo "#include <sys/utsname.h>"; \
337 echo "struct utsname osinfo;"; \
338 echo "int main(int argc, char **argv)"; \
339 echo "{ uname (&osinfo); return 0; }"; ) > .featuretest.c )
340 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest >/dev/null 2>&1 && \
341 ( echo "found."; echo "UTSNAME := yes" >> .features.tmp ) || \
342 ( echo "not found."; echo "UTSNAME := no" >> .features.tmp )
Carl-Daniel Hailfingerc1f00c52010-01-09 14:18:01 +0000343 @$(DIFF) -q .features.tmp .features >/dev/null 2>&1 && rm .features.tmp || mv .features.tmp .features
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +0000344 @rm -f .featuretest.c .featuretest
Carl-Daniel Hailfinger8a59ff02009-12-24 03:33:11 +0000345endif
Paul Fox05dfbe62009-06-16 21:08:06 +0000346
Uwe Hermannc113b572006-12-14 00:59:41 +0000347install: $(PROGRAM)
Uwe Hermannc2a9c9c2009-05-14 14:51:14 +0000348 mkdir -p $(DESTDIR)$(PREFIX)/sbin
Uwe Hermann56b2cb02009-05-21 15:59:58 +0000349 mkdir -p $(DESTDIR)$(MANDIR)/man8
Uwe Hermannc2a9c9c2009-05-14 14:51:14 +0000350 $(INSTALL) -m 0755 $(PROGRAM) $(DESTDIR)$(PREFIX)/sbin
Uwe Hermann56b2cb02009-05-21 15:59:58 +0000351 $(INSTALL) -m 0644 $(PROGRAM).8 $(DESTDIR)$(MANDIR)/man8
Uwe Hermannc113b572006-12-14 00:59:41 +0000352
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000353export:
Carl-Daniel Hailfinger48e5e092009-08-31 16:25:08 +0000354 @rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME)
355 @svn export -r BASE . $(EXPORTDIR)/flashrom-$(RELEASENAME)
356 @sed "s/^SVNVERSION.*/SVNVERSION := $(SVNVERSION)/" Makefile >$(EXPORTDIR)/flashrom-$(RELEASENAME)/Makefile
357 @LC_ALL=C svn log >$(EXPORTDIR)/flashrom-$(RELEASENAME)/ChangeLog
358 @echo Exported $(EXPORTDIR)/flashrom-$(RELEASENAME)/
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000359
360tarball: export
Carl-Daniel Hailfinger48e5e092009-08-31 16:25:08 +0000361 @tar cjf $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2 -C $(EXPORTDIR)/ $(TAROPTIONS) flashrom-$(RELEASENAME)/
362 @rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME)
363 @echo Created $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000364
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000365djgpp-dos: clean
366 make CC=i586-pc-msdosdjgpp-gcc STRIP=i586-pc-msdosdjgpp-strip WARNERROR=no OS_ARCH=DOS
367
368.PHONY: all clean distclean dep compiler pciutils features export tarball dos
Ollie Lho184a4042005-11-26 21:55:36 +0000369
370-include .dependencies