blob: f8400b048bd70e142d16c4c910bfc9bd6c096046 [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>
5#
6# This program is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; version 2 of the License.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program; if not, write to the Free Software
17# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Ollie Lho184a4042005-11-26 21:55:36 +000018#
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000019
Ollie Lho184a4042005-11-26 21:55:36 +000020PROGRAM = flashrom
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000021
Uwe Hermannc2a9c9c2009-05-14 14:51:14 +000022CC ?= gcc
23STRIP = strip
Christian Ruppertdb9d9f42009-05-14 14:17:07 +000024INSTALL = install
Paul Fox05dfbe62009-06-16 21:08:06 +000025DIFF = diff
Christian Ruppertdb9d9f42009-05-14 14:17:07 +000026PREFIX ?= /usr/local
Uwe Hermann56b2cb02009-05-21 15:59:58 +000027MANDIR ?= $(PREFIX)/share/man
Christian Ruppertdb9d9f42009-05-14 14:17:07 +000028CFLAGS ?= -Os -Wall -Werror
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +000029EXPORTDIR ?= .
Christian Ruppertdb9d9f42009-05-14 14:17:07 +000030
Adam Kaufman064b1f22007-02-06 19:47:50 +000031OS_ARCH = $(shell uname)
Peter Stugea69c4472009-01-26 01:16:09 +000032ifneq ($(OS_ARCH), SunOS)
Adam Kaufman064b1f22007-02-06 19:47:50 +000033STRIP_ARGS = -s
34endif
Stefan Reinauerf79edb92009-01-26 01:23:31 +000035ifeq ($(OS_ARCH), Darwin)
36CFLAGS += -I/usr/local/include
37LDFLAGS += -framework IOKit -framework DirectIO -L/usr/local/lib
38endif
Andriy Gapon65c1b862008-05-22 13:22:45 +000039ifeq ($(OS_ARCH), FreeBSD)
40CFLAGS += -I/usr/local/include
41LDFLAGS += -L/usr/local/lib
42endif
Ollie Lho184a4042005-11-26 21:55:36 +000043
Christian Ruppertdb9d9f42009-05-14 14:17:07 +000044LIBS += -lpci -lz
Peter Stugea69c4472009-01-26 01:16:09 +000045
Peter Stuge08c2b022008-06-21 04:39:17 +000046OBJS = chipset_enable.o board_enable.o udelay.o jedec.o stm50flw0x0x.o \
Uwe Hermann3b0d6642009-06-15 13:27:49 +000047 sst28sf040.o am29f040b.o mx29f002.o m29f400bt.o pm29f002.o \
Mats Erik Andersson44e1a192008-09-26 13:19:02 +000048 w49f002u.o 82802ab.o pm49fl00x.o sst49lf040.o en29f002a.o \
Stefan Reinauer0593f212009-01-26 01:10:48 +000049 sst49lfxxxc.o sst_fwhub.o layout.o cbtable.o flashchips.o physmap.o \
Dominik Geyerb46acba2008-05-16 12:55:55 +000050 flashrom.o w39v080fa.o sharplhf00l04.o w29ee011.o spi.o it87spi.o \
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +000051 ichspi.o w39v040c.o sb600spi.o wbsio_spi.o m29f002.o internal.o \
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +000052 dummyflasher.o pcidev.o nic3com.o satasii.o ft2232_spi.o \
Urja Rannikko22915352009-06-23 11:33:43 +000053 print.o
Ollie Lho184a4042005-11-26 21:55:36 +000054
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +000055all: pciutils features dep $(PROGRAM)
Ollie Lho184a4042005-11-26 21:55:36 +000056
Carl-Daniel Hailfinger9e675852009-05-04 12:29:59 +000057# Set the flashrom version string from the highest revision number
58# of the checked out flashrom files.
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +000059# Note to packagers: Any tree exported with "make export" or "make tarball"
60# will not require subversion. The downloadable snapshots are already exported.
Carl-Daniel Hailfinger8ef7dce2009-07-10 20:19:48 +000061SVNVERSION := $(shell LC_ALL=C svnversion -cn . | sed -e "s/.*://" -e "s/\([0-9]*\).*/\1/" | grep "[0-9]" || echo unknown)
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +000062
63VERSION := 0.9.0-r$(SVNVERSION)
64
65SVNDEF := -D'FLASHROM_VERSION="$(VERSION)"'
Bernhard Walle201bde32008-01-21 15:24:22 +000066
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +000067# Always enable serprog for now. Needs to be disabled on Windows.
68CONFIG_SERPROG = yes
69
70ifeq ($(CONFIG_SERPROG), yes)
71FEATURE_CFLAGS += -D'SERPROG_SUPPORT=1'
72OBJS += serprog.o
Carl-Daniel Hailfinger10572fa2009-08-17 16:30:53 +000073ifeq ($(OS_ARCH), SunOS)
74LIBS += -lsocket
75endif
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +000076endif
77
78FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "FTDISUPPORT := yes" .features && printf "%s" "-D'FT2232_SPI_SUPPORT=1'")
79
80FEATURE_LIBS += $(shell LC_ALL=C grep -q "FTDISUPPORT := yes" .features && printf "%s" "-lftdi")
81
Ollie Lho184a4042005-11-26 21:55:36 +000082$(PROGRAM): $(OBJS)
Paul Fox05dfbe62009-06-16 21:08:06 +000083 $(CC) $(LDFLAGS) -o $(PROGRAM) $(OBJS) $(LIBS) $(FEATURE_LIBS)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000084
Carl-Daniel Hailfinger8ef7dce2009-07-10 20:19:48 +000085# TAROPTIONS reduces information leakage from the packager's system.
86# If other tar programs support command line arguments for setting uid/gid of
87# stored files, they can be handled here as well.
88TAROPTIONS = $(shell LC_ALL=C tar --version|grep -q GNU && echo "--owner=root --group=root")
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +000089
Paul Fox05dfbe62009-06-16 21:08:06 +000090%.o: %.c .features
Carl-Daniel Hailfingerbdb63dc2009-06-23 11:48:37 +000091 $(CC) $(CFLAGS) $(CPPFLAGS) $(FEATURE_CFLAGS) $(SVNDEF) -o $@ -c $<
Clark Rawlins02016f72008-02-14 23:22:20 +000092
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000093clean:
Peter Stuge11103092008-07-02 03:03:58 +000094 rm -f $(PROGRAM) *.o
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000095
Ollie Lho184a4042005-11-26 21:55:36 +000096distclean: clean
Paul Fox05dfbe62009-06-16 21:08:06 +000097 rm -f .dependencies .features
Peter Stuge681b1902008-06-22 02:00:39 +000098
Ollie Lho184a4042005-11-26 21:55:36 +000099dep:
Christian Ruppertdb9d9f42009-05-14 14:17:07 +0000100 @$(CC) $(CPPFLAGS) $(SVNDEF) -MM *.c > .dependencies
101
102strip: $(PROGRAM)
103 $(STRIP) $(STRIP_ARGS) $(PROGRAM)
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000104
Carl-Daniel Hailfinger4cb7a962009-06-16 09:31:51 +0000105compiler:
Paul Fox05dfbe62009-06-16 21:08:06 +0000106 @printf "Checking for a C compiler... "
Carl-Daniel Hailfinger4cb7a962009-06-16 09:31:51 +0000107 @$(shell ( echo "int main(int argc, char **argv)"; \
108 echo "{ return 0; }"; ) > .test.c )
109 @$(CC) $(CFLAGS) $(LDFLAGS) .test.c -o .test >/dev/null && \
110 echo "found." || ( echo "not found."; \
111 rm -f .test.c .test; exit 1)
112 @rm -f .test.c .test
113
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000114pciutils: compiler
Paul Fox05dfbe62009-06-16 21:08:06 +0000115 @printf "Checking for pciutils and zlib... "
Stefan Reinauer53e96252005-12-01 16:19:24 +0000116 @$(shell ( echo "#include <pci/pci.h>"; \
117 echo "struct pci_access *pacc;"; \
118 echo "int main(int argc, char **argv)"; \
119 echo "{ pacc = pci_alloc(); return 0; }"; ) > .test.c )
Christian Ruppertdb9d9f42009-05-14 14:17:07 +0000120 @$(CC) $(CFLAGS) $(LDFLAGS) .test.c -o .test $(LIBS) >/dev/null 2>&1 && \
Stefan Reinauer53e96252005-12-01 16:19:24 +0000121 echo "found." || ( echo "not found."; echo; \
Ed Swierke871d1f2007-02-16 14:36:12 +0000122 echo "Please install pciutils-devel and zlib-devel."; \
Stefan Reinauer53e96252005-12-01 16:19:24 +0000123 echo "See README for more information."; echo; \
124 rm -f .test.c .test; exit 1)
125 @rm -f .test.c .test
126
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000127.features: features
128
129features: compiler
130 @echo "FEATURES := yes" > .features.tmp
Paul Fox05dfbe62009-06-16 21:08:06 +0000131 @printf "Checking for FTDI support... "
132 @$(shell ( echo "#include <ftdi.h>"; \
133 echo "struct ftdi_context *ftdic = NULL;"; \
134 echo "int main(int argc, char **argv)"; \
135 echo "{ return ftdi_init(ftdic); }"; ) > .featuretest.c )
136 @$(CC) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest $(LIBS) -lftdi >/dev/null 2>&1 && \
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000137 ( echo "found."; echo "FTDISUPPORT := yes" >> .features.tmp ) || \
138 ( echo "not found."; echo "FTDISUPPORT := no" >> .features.tmp )
Paul Fox05dfbe62009-06-16 21:08:06 +0000139 @$(DIFF) -q .features.tmp .features >/dev/null 2>&1 && rm .features.tmp || mv .features.tmp .features
140 @rm -f .featuretest.c .featuretest
141
Uwe Hermannc113b572006-12-14 00:59:41 +0000142install: $(PROGRAM)
Uwe Hermannc2a9c9c2009-05-14 14:51:14 +0000143 mkdir -p $(DESTDIR)$(PREFIX)/sbin
Uwe Hermann56b2cb02009-05-21 15:59:58 +0000144 mkdir -p $(DESTDIR)$(MANDIR)/man8
Uwe Hermannc2a9c9c2009-05-14 14:51:14 +0000145 $(INSTALL) -m 0755 $(PROGRAM) $(DESTDIR)$(PREFIX)/sbin
Uwe Hermann56b2cb02009-05-21 15:59:58 +0000146 $(INSTALL) -m 0644 $(PROGRAM).8 $(DESTDIR)$(MANDIR)/man8
Uwe Hermannc113b572006-12-14 00:59:41 +0000147
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000148export:
149 @rm -rf $(EXPORTDIR)/flashrom-$(VERSION)
150 @svn export -r BASE . $(EXPORTDIR)/flashrom-$(VERSION)
151 @sed "s/^SVNVERSION.*/SVNVERSION := $(SVNVERSION)/" Makefile >$(EXPORTDIR)/flashrom-$(VERSION)/Makefile
Carl-Daniel Hailfinger9cb867b2009-06-30 12:41:00 +0000152 @LC_ALL=C svn log >$(EXPORTDIR)/flashrom-$(VERSION)/ChangeLog
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000153 @echo Exported $(EXPORTDIR)/flashrom-$(VERSION)/
154
155tarball: export
Carl-Daniel Hailfinger8ef7dce2009-07-10 20:19:48 +0000156 @tar cjf $(EXPORTDIR)/flashrom-$(VERSION).tar.bz2 -C $(EXPORTDIR)/ $(TAROPTIONS) flashrom-$(VERSION)/
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000157 @rm -rf $(EXPORTDIR)/flashrom-$(VERSION)
Carl-Daniel Hailfinger8ef7dce2009-07-10 20:19:48 +0000158 @echo Created $(EXPORTDIR)/flashrom-$(VERSION).tar.bz2
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000159
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000160.PHONY: all clean distclean dep compiler pciutils features export tarball
Ollie Lho184a4042005-11-26 21:55:36 +0000161
162-include .dependencies