blob: 567c42c8f4adf29ef9e0ab8f8399f0ef64419b9a [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
25PREFIX ?= /usr/local
Uwe Hermann56b2cb02009-05-21 15:59:58 +000026MANDIR ?= $(PREFIX)/share/man
Christian Ruppertdb9d9f42009-05-14 14:17:07 +000027CFLAGS ?= -Os -Wall -Werror
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +000028EXPORTDIR ?= .
Christian Ruppertdb9d9f42009-05-14 14:17:07 +000029
Adam Kaufman064b1f22007-02-06 19:47:50 +000030OS_ARCH = $(shell uname)
Peter Stugea69c4472009-01-26 01:16:09 +000031ifneq ($(OS_ARCH), SunOS)
Adam Kaufman064b1f22007-02-06 19:47:50 +000032STRIP_ARGS = -s
33endif
Stefan Reinauerf79edb92009-01-26 01:23:31 +000034ifeq ($(OS_ARCH), Darwin)
35CFLAGS += -I/usr/local/include
36LDFLAGS += -framework IOKit -framework DirectIO -L/usr/local/lib
37endif
Andriy Gapon65c1b862008-05-22 13:22:45 +000038ifeq ($(OS_ARCH), FreeBSD)
39CFLAGS += -I/usr/local/include
40LDFLAGS += -L/usr/local/lib
41endif
Ollie Lho184a4042005-11-26 21:55:36 +000042
Christian Ruppertdb9d9f42009-05-14 14:17:07 +000043LIBS += -lpci -lz
Peter Stugea69c4472009-01-26 01:16:09 +000044
Peter Stuge08c2b022008-06-21 04:39:17 +000045OBJS = chipset_enable.o board_enable.o udelay.o jedec.o stm50flw0x0x.o \
Uwe Hermann24f9fbe2009-05-12 14:06:04 +000046 sst28sf040.o am29f040b.o mx29f002.o m29f400bt.o \
Mats Erik Andersson44e1a192008-09-26 13:19:02 +000047 w49f002u.o 82802ab.o pm49fl00x.o sst49lf040.o en29f002a.o \
Stefan Reinauer0593f212009-01-26 01:10:48 +000048 sst49lfxxxc.o sst_fwhub.o layout.o cbtable.o flashchips.o physmap.o \
Dominik Geyerb46acba2008-05-16 12:55:55 +000049 flashrom.o w39v080fa.o sharplhf00l04.o w29ee011.o spi.o it87spi.o \
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +000050 ichspi.o w39v040c.o sb600spi.o wbsio_spi.o m29f002.o internal.o \
Uwe Hermann3def09d2009-05-17 22:58:41 +000051 dummyflasher.o pcidev.o nic3com.o satasii.o
Ollie Lho184a4042005-11-26 21:55:36 +000052
Stefan Reinauer53e96252005-12-01 16:19:24 +000053all: pciutils dep $(PROGRAM)
Ollie Lho184a4042005-11-26 21:55:36 +000054
Carl-Daniel Hailfinger9e675852009-05-04 12:29:59 +000055# Set the flashrom version string from the highest revision number
56# of the checked out flashrom files.
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +000057# Note to packagers: Any tree exported with "make export" or "make tarball"
58# will not require subversion. The downloadable snapshots are already exported.
59SVNVERSION := $(shell LANG=C svnversion -cn . | sed -e "s/.*://" -e "s/\([0-9]*\).*/\1/" | grep "[0-9]" || echo unknown)
60
61VERSION := 0.9.0-r$(SVNVERSION)
62
63SVNDEF := -D'FLASHROM_VERSION="$(VERSION)"'
Bernhard Walle201bde32008-01-21 15:24:22 +000064
Ollie Lho184a4042005-11-26 21:55:36 +000065$(PROGRAM): $(OBJS)
Christian Ruppertdb9d9f42009-05-14 14:17:07 +000066 $(CC) $(LDFLAGS) -o $(PROGRAM) $(OBJS) $(LIBS)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000067
Clark Rawlins02016f72008-02-14 23:22:20 +000068flashrom.o: flashrom.c
Uwe Hermanneaefb482009-05-17 22:57:34 +000069 $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $< $(SVNDEF)
Clark Rawlins02016f72008-02-14 23:22:20 +000070
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000071clean:
Peter Stuge11103092008-07-02 03:03:58 +000072 rm -f $(PROGRAM) *.o
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000073
Ollie Lho184a4042005-11-26 21:55:36 +000074distclean: clean
Peter Stuge681b1902008-06-22 02:00:39 +000075 rm -f .dependencies
76
Ollie Lho184a4042005-11-26 21:55:36 +000077dep:
Christian Ruppertdb9d9f42009-05-14 14:17:07 +000078 @$(CC) $(CPPFLAGS) $(SVNDEF) -MM *.c > .dependencies
79
80strip: $(PROGRAM)
81 $(STRIP) $(STRIP_ARGS) $(PROGRAM)
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000082
Stefan Reinauer53e96252005-12-01 16:19:24 +000083pciutils:
Peter Stugecedb09d2009-01-25 23:59:30 +000084 @echo; printf "Checking for pciutils and zlib... "
Stefan Reinauer53e96252005-12-01 16:19:24 +000085 @$(shell ( echo "#include <pci/pci.h>"; \
86 echo "struct pci_access *pacc;"; \
87 echo "int main(int argc, char **argv)"; \
88 echo "{ pacc = pci_alloc(); return 0; }"; ) > .test.c )
Christian Ruppertdb9d9f42009-05-14 14:17:07 +000089 @$(CC) $(CFLAGS) $(LDFLAGS) .test.c -o .test $(LIBS) >/dev/null 2>&1 && \
Stefan Reinauer53e96252005-12-01 16:19:24 +000090 echo "found." || ( echo "not found."; echo; \
Ed Swierke871d1f2007-02-16 14:36:12 +000091 echo "Please install pciutils-devel and zlib-devel."; \
Stefan Reinauer53e96252005-12-01 16:19:24 +000092 echo "See README for more information."; echo; \
93 rm -f .test.c .test; exit 1)
94 @rm -f .test.c .test
95
Uwe Hermannc113b572006-12-14 00:59:41 +000096install: $(PROGRAM)
Uwe Hermannc2a9c9c2009-05-14 14:51:14 +000097 mkdir -p $(DESTDIR)$(PREFIX)/sbin
Uwe Hermann56b2cb02009-05-21 15:59:58 +000098 mkdir -p $(DESTDIR)$(MANDIR)/man8
Uwe Hermannc2a9c9c2009-05-14 14:51:14 +000099 $(INSTALL) -m 0755 $(PROGRAM) $(DESTDIR)$(PREFIX)/sbin
Uwe Hermann56b2cb02009-05-21 15:59:58 +0000100 $(INSTALL) -m 0644 $(PROGRAM).8 $(DESTDIR)$(MANDIR)/man8
Uwe Hermannc113b572006-12-14 00:59:41 +0000101
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000102export:
103 @rm -rf $(EXPORTDIR)/flashrom-$(VERSION)
104 @svn export -r BASE . $(EXPORTDIR)/flashrom-$(VERSION)
105 @sed "s/^SVNVERSION.*/SVNVERSION := $(SVNVERSION)/" Makefile >$(EXPORTDIR)/flashrom-$(VERSION)/Makefile
106 @echo Exported $(EXPORTDIR)/flashrom-$(VERSION)/
107
108tarball: export
109 @tar cfz $(EXPORTDIR)/flashrom-$(VERSION).tar.gz -C $(EXPORTDIR)/ flashrom-$(VERSION)/
110 @rm -rf $(EXPORTDIR)/flashrom-$(VERSION)
111 @echo Created $(EXPORTDIR)/flashrom-$(VERSION).tar.gz
112
113.PHONY: all clean distclean dep pciutils export tarball
Ollie Lho184a4042005-11-26 21:55:36 +0000114
115-include .dependencies