Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 1 | # |
Uwe Hermann | f78cff1 | 2009-06-12 14:05:25 +0000 | [diff] [blame] | 2 | # 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 Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 18 | # |
Ronald G. Minnich | 5e5f75e | 2002-01-29 18:21:41 +0000 | [diff] [blame] | 19 | |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 20 | PROGRAM = flashrom |
Ronald G. Minnich | eaab50b | 2003-09-12 22:41:53 +0000 | [diff] [blame] | 21 | |
Uwe Hermann | c2a9c9c | 2009-05-14 14:51:14 +0000 | [diff] [blame] | 22 | CC ?= gcc |
| 23 | STRIP = strip |
Christian Ruppert | db9d9f4 | 2009-05-14 14:17:07 +0000 | [diff] [blame] | 24 | INSTALL = install |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 25 | DIFF = diff |
Christian Ruppert | db9d9f4 | 2009-05-14 14:17:07 +0000 | [diff] [blame] | 26 | PREFIX ?= /usr/local |
Uwe Hermann | 56b2cb0 | 2009-05-21 15:59:58 +0000 | [diff] [blame] | 27 | MANDIR ?= $(PREFIX)/share/man |
Michael Karcher | e7f3209 | 2010-01-12 15:36:24 +0000 | [diff] [blame] | 28 | CFLAGS ?= -Os -Wall -Werror -Wshadow |
Carl-Daniel Hailfinger | a23041c | 2009-06-12 14:49:10 +0000 | [diff] [blame] | 29 | EXPORTDIR ?= . |
Christian Ruppert | db9d9f4 | 2009-05-14 14:17:07 +0000 | [diff] [blame] | 30 | |
Adam Kaufman | 064b1f2 | 2007-02-06 19:47:50 +0000 | [diff] [blame] | 31 | OS_ARCH = $(shell uname) |
Peter Stuge | a69c447 | 2009-01-26 01:16:09 +0000 | [diff] [blame] | 32 | ifneq ($(OS_ARCH), SunOS) |
Adam Kaufman | 064b1f2 | 2007-02-06 19:47:50 +0000 | [diff] [blame] | 33 | STRIP_ARGS = -s |
| 34 | endif |
Stefan Reinauer | f79edb9 | 2009-01-26 01:23:31 +0000 | [diff] [blame] | 35 | ifeq ($(OS_ARCH), Darwin) |
Stefan Reinauer | 2fea3f3 | 2010-01-21 20:26:30 +0000 | [diff] [blame^] | 36 | CPPFLAGS += -I/opt/local/include -I/usr/local/include |
| 37 | LDFLAGS += -framework IOKit -framework DirectIO -L/opt/local/lib -L/usr/local/lib |
Stefan Reinauer | f79edb9 | 2009-01-26 01:23:31 +0000 | [diff] [blame] | 38 | endif |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 39 | ifeq ($(OS_ARCH), FreeBSD) |
Stefan Reinauer | 2fea3f3 | 2010-01-21 20:26:30 +0000 | [diff] [blame^] | 40 | CPPFLAGS += -I/usr/local/include |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 41 | LDFLAGS += -L/usr/local/lib |
| 42 | endif |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 43 | |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 44 | CHIP_OBJS = jedec.o stm50flw0x0x.o w39v080fa.o sharplhf00l04.o w29ee011.o \ |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 45 | sst28sf040.o am29f040b.o mx29f002.o m29f400bt.o pm29f002.o w39v040c.o \ |
| 46 | w49f002u.o 82802ab.o pm49fl00x.o sst49lf040.o en29f002a.o m29f002.o \ |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 47 | sst49lfxxxc.o sst_fwhub.o flashchips.o spi.o |
| 48 | |
| 49 | LIB_OBJS = layout.o |
| 50 | |
Sean Nelson | 51e97d7 | 2010-01-07 20:09:33 +0000 | [diff] [blame] | 51 | CLI_OBJS = flashrom.o cli_classic.o cli_output.o print.o |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 52 | |
Carl-Daniel Hailfinger | cc1802d | 2010-01-06 10:21:00 +0000 | [diff] [blame] | 53 | PROGRAMMER_OBJS = udelay.o programmer.o |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 54 | |
Carl-Daniel Hailfinger | b18ecbc | 2009-06-19 14:20:34 +0000 | [diff] [blame] | 55 | all: pciutils features dep $(PROGRAM) |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 56 | |
Carl-Daniel Hailfinger | 9e67585 | 2009-05-04 12:29:59 +0000 | [diff] [blame] | 57 | # Set the flashrom version string from the highest revision number |
| 58 | # of the checked out flashrom files. |
Carl-Daniel Hailfinger | a23041c | 2009-06-12 14:49:10 +0000 | [diff] [blame] | 59 | # 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 Hailfinger | d271e79 | 2009-09-05 01:12:07 +0000 | [diff] [blame] | 61 | SVNVERSION := $(shell LC_ALL=C svnversion -cn . | sed -e "s/.*://" -e "s/\([0-9]*\).*/\1/" | grep "[0-9]" || LC_ALL=C svn info . | grep ^Revision | sed "s/.*[[:blank:]]\+\([0-9]*\)[^0-9]*/\1/" | grep "[0-9]" || echo unknown) |
Carl-Daniel Hailfinger | a23041c | 2009-06-12 14:49:10 +0000 | [diff] [blame] | 62 | |
Carl-Daniel Hailfinger | 0d5db9a | 2009-09-02 13:47:36 +0000 | [diff] [blame] | 63 | RELEASE := 0.9.1 |
Carl-Daniel Hailfinger | 48e5e09 | 2009-08-31 16:25:08 +0000 | [diff] [blame] | 64 | VERSION := $(RELEASE)-r$(SVNVERSION) |
| 65 | RELEASENAME ?= $(VERSION) |
Carl-Daniel Hailfinger | a23041c | 2009-06-12 14:49:10 +0000 | [diff] [blame] | 66 | |
| 67 | SVNDEF := -D'FLASHROM_VERSION="$(VERSION)"' |
Bernhard Walle | 201bde3 | 2008-01-21 15:24:22 +0000 | [diff] [blame] | 68 | |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 69 | # Always enable internal/onboard support for now. |
| 70 | CONFIG_INTERNAL ?= yes |
| 71 | |
Carl-Daniel Hailfinger | 6be7411 | 2009-08-12 16:17:41 +0000 | [diff] [blame] | 72 | # Always enable serprog for now. Needs to be disabled on Windows. |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 73 | CONFIG_SERPROG ?= yes |
| 74 | |
Carl-Daniel Hailfinger | 547872b | 2009-09-28 13:15:16 +0000 | [diff] [blame] | 75 | # Bitbanging SPI infrastructure is not used yet. |
| 76 | CONFIG_BITBANG_SPI ?= no |
| 77 | |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 78 | # Always enable 3Com NICs for now. |
| 79 | CONFIG_NIC3COM ?= yes |
| 80 | |
Uwe Hermann | 4d67950 | 2009-10-01 14:11:43 +0000 | [diff] [blame] | 81 | # Disable NVIDIA graphics cards for now, write/erase don't work properly. |
| 82 | CONFIG_GFXNVIDIA ?= no |
Uwe Hermann | 2bc98f6 | 2009-09-30 18:29:55 +0000 | [diff] [blame] | 83 | |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 84 | # Always enable SiI SATA controllers for now. |
| 85 | CONFIG_SATASII ?= yes |
| 86 | |
| 87 | # Always enable FT2232 SPI dongles for now. |
| 88 | CONFIG_FT2232SPI ?= yes |
| 89 | |
| 90 | # Always enable dummy tracing for now. |
| 91 | CONFIG_DUMMY ?= yes |
| 92 | |
| 93 | # Always enable Dr. Kaiser for now. |
| 94 | CONFIG_DRKAISER ?= yes |
Carl-Daniel Hailfinger | 6be7411 | 2009-08-12 16:17:41 +0000 | [diff] [blame] | 95 | |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 96 | # Always enable Bus Pirate SPI for now. |
| 97 | CONFIG_BUSPIRATESPI ?= yes |
| 98 | |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 99 | # Disable Dediprog SF100 until support is complete and tested. |
| 100 | CONFIG_DEDIPROG ?= no |
| 101 | |
Carl-Daniel Hailfinger | 6161ff1 | 2009-11-16 21:22:24 +0000 | [diff] [blame] | 102 | # Disable wiki printing by default. It is only useful if you have wiki access. |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 103 | CONFIG_PRINT_WIKI ?= no |
| 104 | |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 105 | ifeq ($(CONFIG_INTERNAL), yes) |
| 106 | FEATURE_CFLAGS += -D'INTERNAL_SUPPORT=1' |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 107 | PROGRAMMER_OBJS += chipset_enable.o board_enable.o cbtable.o dmi.o it87spi.o ichspi.o sb600spi.o wbsio_spi.o |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 108 | NEED_PCI := yes |
| 109 | endif |
| 110 | |
Carl-Daniel Hailfinger | 6be7411 | 2009-08-12 16:17:41 +0000 | [diff] [blame] | 111 | ifeq ($(CONFIG_SERPROG), yes) |
| 112 | FEATURE_CFLAGS += -D'SERPROG_SUPPORT=1' |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 113 | PROGRAMMER_OBJS += serprog.o |
Carl-Daniel Hailfinger | 10572fa | 2009-08-17 16:30:53 +0000 | [diff] [blame] | 114 | ifeq ($(OS_ARCH), SunOS) |
| 115 | LIBS += -lsocket |
| 116 | endif |
Carl-Daniel Hailfinger | 6be7411 | 2009-08-12 16:17:41 +0000 | [diff] [blame] | 117 | endif |
| 118 | |
Carl-Daniel Hailfinger | 547872b | 2009-09-28 13:15:16 +0000 | [diff] [blame] | 119 | ifeq ($(CONFIG_BITBANG_SPI), yes) |
| 120 | FEATURE_CFLAGS += -D'BITBANG_SPI_SUPPORT=1' |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 121 | PROGRAMMER_OBJS += bitbang_spi.o |
Carl-Daniel Hailfinger | 547872b | 2009-09-28 13:15:16 +0000 | [diff] [blame] | 122 | endif |
| 123 | |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 124 | ifeq ($(CONFIG_NIC3COM), yes) |
| 125 | FEATURE_CFLAGS += -D'NIC3COM_SUPPORT=1' |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 126 | PROGRAMMER_OBJS += nic3com.o |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 127 | NEED_PCI := yes |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 128 | endif |
Carl-Daniel Hailfinger | 6be7411 | 2009-08-12 16:17:41 +0000 | [diff] [blame] | 129 | |
Uwe Hermann | 2bc98f6 | 2009-09-30 18:29:55 +0000 | [diff] [blame] | 130 | ifeq ($(CONFIG_GFXNVIDIA), yes) |
| 131 | FEATURE_CFLAGS += -D'GFXNVIDIA_SUPPORT=1' |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 132 | PROGRAMMER_OBJS += gfxnvidia.o |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 133 | NEED_PCI := yes |
Uwe Hermann | 2bc98f6 | 2009-09-30 18:29:55 +0000 | [diff] [blame] | 134 | endif |
| 135 | |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 136 | ifeq ($(CONFIG_SATASII), yes) |
| 137 | FEATURE_CFLAGS += -D'SATASII_SUPPORT=1' |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 138 | PROGRAMMER_OBJS += satasii.o |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 139 | NEED_PCI := yes |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 140 | endif |
| 141 | |
| 142 | ifeq ($(CONFIG_FT2232SPI), yes) |
Carl-Daniel Hailfinger | c1f00c5 | 2010-01-09 14:18:01 +0000 | [diff] [blame] | 143 | FTDILIBS := $(shell pkg-config --libs libftdi 2>/dev/null || printf "%s" "-lftdi -lusb") |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 144 | # This is a totally ugly hack. |
| 145 | FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "FTDISUPPORT := yes" .features && printf "%s" "-D'FT2232_SPI_SUPPORT=1'") |
Jörg Mayer | 8776db2 | 2009-11-16 14:05:13 +0000 | [diff] [blame] | 146 | FEATURE_LIBS += $(shell LC_ALL=C grep -q "FTDISUPPORT := yes" .features && printf "%s" "$(FTDILIBS)") |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 147 | PROGRAMMER_OBJS += ft2232_spi.o |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 148 | endif |
| 149 | |
| 150 | ifeq ($(CONFIG_DUMMY), yes) |
| 151 | FEATURE_CFLAGS += -D'DUMMY_SUPPORT=1' |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 152 | PROGRAMMER_OBJS += dummyflasher.o |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 153 | endif |
| 154 | |
| 155 | ifeq ($(CONFIG_DRKAISER), yes) |
| 156 | FEATURE_CFLAGS += -D'DRKAISER_SUPPORT=1' |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 157 | PROGRAMMER_OBJS += drkaiser.o |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 158 | NEED_PCI := yes |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 159 | endif |
Carl-Daniel Hailfinger | 6be7411 | 2009-08-12 16:17:41 +0000 | [diff] [blame] | 160 | |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 161 | ifeq ($(CONFIG_BUSPIRATESPI), yes) |
| 162 | FEATURE_CFLAGS += -D'BUSPIRATE_SPI_SUPPORT=1' |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 163 | PROGRAMMER_OBJS += buspirate_spi.o |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 164 | endif |
| 165 | |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 166 | ifeq ($(CONFIG_DEDIPROG), yes) |
| 167 | FEATURE_CFLAGS += -D'DEDIPROG_SUPPORT=1' |
| 168 | FEATURE_LIBS += -lusb |
| 169 | PROGRAMMER_OBJS += dediprog.o |
| 170 | endif |
| 171 | |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 172 | # Ugly, but there's no elif/elseif. |
Carl-Daniel Hailfinger | e51ea10 | 2009-11-23 19:20:11 +0000 | [diff] [blame] | 173 | ifeq ($(CONFIG_SERPROG), yes) |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 174 | LIB_OBJS += serial.o |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 175 | else |
| 176 | ifeq ($(CONFIG_BUSPIRATESPI), yes) |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 177 | LIB_OBJS += serial.o |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 178 | endif |
Carl-Daniel Hailfinger | e51ea10 | 2009-11-23 19:20:11 +0000 | [diff] [blame] | 179 | endif |
| 180 | |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 181 | ifeq ($(NEED_PCI), yes) |
Carl-Daniel Hailfinger | 8a59ff0 | 2009-12-24 03:33:11 +0000 | [diff] [blame] | 182 | LIBS += -lpci |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 183 | FEATURE_CFLAGS += -D'NEED_PCI=1' |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 184 | PROGRAMMER_OBJS += pcidev.o physmap.o internal.o #FIXME: We need to move stuff |
| 185 | # from internal.c and pcidev.c to pci.c |
| 186 | # internal.c needs to be split |
| 187 | # into internal-programmer-only stuff |
| 188 | # and a support lib for all internal+pci |
| 189 | # based stuff. |
Jonathan A. Kollasch | 3646c8f | 2010-01-08 21:18:08 +0000 | [diff] [blame] | 190 | ifeq ($(OS_ARCH), NetBSD) |
| 191 | LIBS += -lpciutils # The libpci we want. |
| 192 | LIBS += -l$(shell uname -m) # For (i386|x86_64)_iopl(2). |
| 193 | endif |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 194 | endif |
| 195 | |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 196 | ifeq ($(CONFIG_PRINT_WIKI), yes) |
| 197 | FEATURE_CFLAGS += -D'PRINT_WIKI_SUPPORT=1' |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 198 | CLI_OBJS += print_wiki.o |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 199 | endif |
| 200 | |
Carl-Daniel Hailfinger | a472b8b | 2009-10-03 17:08:02 +0000 | [diff] [blame] | 201 | # We could use PULLED_IN_LIBS, but that would be ugly. |
| 202 | FEATURE_LIBS += $(shell LC_ALL=C grep -q "NEEDLIBZ := yes" .libdeps && printf "%s" "-lz") |
| 203 | |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 204 | OBJS = $(CHIP_OBJS) $(CLI_OBJS) $(PROGRAMMER_OBJS) $(LIB_OBJS) |
| 205 | |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 206 | $(PROGRAM): $(OBJS) |
Jörg Mayer | 8776db2 | 2009-11-16 14:05:13 +0000 | [diff] [blame] | 207 | $(CC) $(LDFLAGS) -o $(PROGRAM) $(OBJS) $(FEATURE_LIBS) $(LIBS) |
Ronald G. Minnich | 5e5f75e | 2002-01-29 18:21:41 +0000 | [diff] [blame] | 208 | |
Carl-Daniel Hailfinger | 8ef7dce | 2009-07-10 20:19:48 +0000 | [diff] [blame] | 209 | # TAROPTIONS reduces information leakage from the packager's system. |
| 210 | # If other tar programs support command line arguments for setting uid/gid of |
| 211 | # stored files, they can be handled here as well. |
| 212 | TAROPTIONS = $(shell LC_ALL=C tar --version|grep -q GNU && echo "--owner=root --group=root") |
Carl-Daniel Hailfinger | b18ecbc | 2009-06-19 14:20:34 +0000 | [diff] [blame] | 213 | |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 214 | %.o: %.c .features |
Carl-Daniel Hailfinger | bdb63dc | 2009-06-23 11:48:37 +0000 | [diff] [blame] | 215 | $(CC) $(CFLAGS) $(CPPFLAGS) $(FEATURE_CFLAGS) $(SVNDEF) -o $@ -c $< |
Clark Rawlins | 02016f7 | 2008-02-14 23:22:20 +0000 | [diff] [blame] | 216 | |
Ronald G. Minnich | 5e5f75e | 2002-01-29 18:21:41 +0000 | [diff] [blame] | 217 | clean: |
Peter Stuge | 1110309 | 2008-07-02 03:03:58 +0000 | [diff] [blame] | 218 | rm -f $(PROGRAM) *.o |
Ronald G. Minnich | eaab50b | 2003-09-12 22:41:53 +0000 | [diff] [blame] | 219 | |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 220 | distclean: clean |
Carl-Daniel Hailfinger | a472b8b | 2009-10-03 17:08:02 +0000 | [diff] [blame] | 221 | rm -f .dependencies .features .libdeps |
Peter Stuge | 681b190 | 2008-06-22 02:00:39 +0000 | [diff] [blame] | 222 | |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 223 | dep: |
Stefan Reinauer | 2fea3f3 | 2010-01-21 20:26:30 +0000 | [diff] [blame^] | 224 | $(CC) $(CPPFLAGS) $(SVNDEF) -MM *.c > .dependencies |
Christian Ruppert | db9d9f4 | 2009-05-14 14:17:07 +0000 | [diff] [blame] | 225 | |
| 226 | strip: $(PROGRAM) |
| 227 | $(STRIP) $(STRIP_ARGS) $(PROGRAM) |
Ronald G. Minnich | eaab50b | 2003-09-12 22:41:53 +0000 | [diff] [blame] | 228 | |
Carl-Daniel Hailfinger | 4cb7a96 | 2009-06-16 09:31:51 +0000 | [diff] [blame] | 229 | compiler: |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 230 | @printf "Checking for a C compiler... " |
Carl-Daniel Hailfinger | 4cb7a96 | 2009-06-16 09:31:51 +0000 | [diff] [blame] | 231 | @$(shell ( echo "int main(int argc, char **argv)"; \ |
| 232 | echo "{ return 0; }"; ) > .test.c ) |
Stefan Reinauer | 2fea3f3 | 2010-01-21 20:26:30 +0000 | [diff] [blame^] | 233 | @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .test.c -o .test >/dev/null && \ |
Carl-Daniel Hailfinger | 4cb7a96 | 2009-06-16 09:31:51 +0000 | [diff] [blame] | 234 | echo "found." || ( echo "not found."; \ |
| 235 | rm -f .test.c .test; exit 1) |
| 236 | @rm -f .test.c .test |
| 237 | |
Carl-Daniel Hailfinger | 8a59ff0 | 2009-12-24 03:33:11 +0000 | [diff] [blame] | 238 | ifeq ($(NEED_PCI), yes) |
Carl-Daniel Hailfinger | b18ecbc | 2009-06-19 14:20:34 +0000 | [diff] [blame] | 239 | pciutils: compiler |
Carl-Daniel Hailfinger | a472b8b | 2009-10-03 17:08:02 +0000 | [diff] [blame] | 240 | @printf "Checking for libpci headers... " |
Stefan Reinauer | 53e9625 | 2005-12-01 16:19:24 +0000 | [diff] [blame] | 241 | @$(shell ( echo "#include <pci/pci.h>"; \ |
| 242 | echo "struct pci_access *pacc;"; \ |
| 243 | echo "int main(int argc, char **argv)"; \ |
| 244 | echo "{ pacc = pci_alloc(); return 0; }"; ) > .test.c ) |
Stefan Reinauer | 2fea3f3 | 2010-01-21 20:26:30 +0000 | [diff] [blame^] | 245 | @$(CC) -c $(CPPFLAGS) $(CFLAGS) .test.c -o .test.o >/dev/null 2>&1 && \ |
Carl-Daniel Hailfinger | a472b8b | 2009-10-03 17:08:02 +0000 | [diff] [blame] | 246 | echo "found." || ( echo "not found."; echo; \ |
| 247 | echo "Please install libpci headers (package pciutils-devel)."; \ |
| 248 | echo "See README for more information."; echo; \ |
| 249 | rm -f .test.c .test.o; exit 1) |
| 250 | @printf "Checking for libpci... " |
| 251 | @$(shell ( echo "#include <pci/pci.h>"; \ |
| 252 | echo "int main(int argc, char **argv)"; \ |
| 253 | echo "{ return 0; }"; ) > .test1.c ) |
Stefan Reinauer | 2fea3f3 | 2010-01-21 20:26:30 +0000 | [diff] [blame^] | 254 | @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .test1.c -o .test1 -lpci $(LIBS) >/dev/null 2>&1 && \ |
Carl-Daniel Hailfinger | a472b8b | 2009-10-03 17:08:02 +0000 | [diff] [blame] | 255 | echo "found." || ( echo "not found."; echo; \ |
| 256 | echo "Please install libpci (package pciutils)."; \ |
| 257 | echo "See README for more information."; echo; \ |
| 258 | rm -f .test1.c .test1; exit 1) |
| 259 | @printf "Checking if libpci is sufficient... " |
| 260 | @printf "" > .libdeps |
Carl-Daniel Hailfinger | 8a59ff0 | 2009-12-24 03:33:11 +0000 | [diff] [blame] | 261 | @$(CC) $(LDFLAGS) .test.o -o .test -lpci $(LIBS) >/dev/null 2>&1 && \ |
Carl-Daniel Hailfinger | a472b8b | 2009-10-03 17:08:02 +0000 | [diff] [blame] | 262 | echo "yes." || ( echo "no."; \ |
| 263 | printf "Checking if libz is present and supplies all needed symbols..."; \ |
Carl-Daniel Hailfinger | 8a59ff0 | 2009-12-24 03:33:11 +0000 | [diff] [blame] | 264 | $(CC) $(LDFLAGS) .test.o -o .test -lpci -lz $(LIBS) >/dev/null 2>&1 && \ |
Carl-Daniel Hailfinger | a472b8b | 2009-10-03 17:08:02 +0000 | [diff] [blame] | 265 | ( echo "yes."; echo "NEEDLIBZ := yes" > .libdeps ) || ( echo "no."; echo; \ |
| 266 | echo "Please install libz."; \ |
| 267 | echo "See README for more information."; echo; \ |
| 268 | rm -f .test.c .test.o .test; exit 1) ) |
| 269 | @rm -f .test.c .test.o .test .test1.c .test1 |
Carl-Daniel Hailfinger | 8a59ff0 | 2009-12-24 03:33:11 +0000 | [diff] [blame] | 270 | else |
| 271 | pciutils: compiler |
| 272 | @printf "" > .libdeps |
| 273 | endif |
Stefan Reinauer | 53e9625 | 2005-12-01 16:19:24 +0000 | [diff] [blame] | 274 | |
Carl-Daniel Hailfinger | b18ecbc | 2009-06-19 14:20:34 +0000 | [diff] [blame] | 275 | .features: features |
| 276 | |
Carl-Daniel Hailfinger | 8a59ff0 | 2009-12-24 03:33:11 +0000 | [diff] [blame] | 277 | ifeq ($(CONFIG_FT2232SPI), yes) |
Carl-Daniel Hailfinger | b18ecbc | 2009-06-19 14:20:34 +0000 | [diff] [blame] | 278 | features: compiler |
| 279 | @echo "FEATURES := yes" > .features.tmp |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 280 | @printf "Checking for FTDI support... " |
| 281 | @$(shell ( echo "#include <ftdi.h>"; \ |
| 282 | echo "struct ftdi_context *ftdic = NULL;"; \ |
| 283 | echo "int main(int argc, char **argv)"; \ |
| 284 | echo "{ return ftdi_init(ftdic); }"; ) > .featuretest.c ) |
Stefan Reinauer | 2fea3f3 | 2010-01-21 20:26:30 +0000 | [diff] [blame^] | 285 | @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest $(FTDILIBS) $(LIBS) >/dev/null 2>&1 && \ |
Carl-Daniel Hailfinger | b18ecbc | 2009-06-19 14:20:34 +0000 | [diff] [blame] | 286 | ( echo "found."; echo "FTDISUPPORT := yes" >> .features.tmp ) || \ |
| 287 | ( echo "not found."; echo "FTDISUPPORT := no" >> .features.tmp ) |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 288 | @$(DIFF) -q .features.tmp .features >/dev/null 2>&1 && rm .features.tmp || mv .features.tmp .features |
| 289 | @rm -f .featuretest.c .featuretest |
Carl-Daniel Hailfinger | 8a59ff0 | 2009-12-24 03:33:11 +0000 | [diff] [blame] | 290 | else |
| 291 | features: compiler |
Carl-Daniel Hailfinger | c1f00c5 | 2010-01-09 14:18:01 +0000 | [diff] [blame] | 292 | @echo "FEATURES := yes" > .features.tmp |
| 293 | @$(DIFF) -q .features.tmp .features >/dev/null 2>&1 && rm .features.tmp || mv .features.tmp .features |
Carl-Daniel Hailfinger | 8a59ff0 | 2009-12-24 03:33:11 +0000 | [diff] [blame] | 294 | endif |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 295 | |
Uwe Hermann | c113b57 | 2006-12-14 00:59:41 +0000 | [diff] [blame] | 296 | install: $(PROGRAM) |
Uwe Hermann | c2a9c9c | 2009-05-14 14:51:14 +0000 | [diff] [blame] | 297 | mkdir -p $(DESTDIR)$(PREFIX)/sbin |
Uwe Hermann | 56b2cb0 | 2009-05-21 15:59:58 +0000 | [diff] [blame] | 298 | mkdir -p $(DESTDIR)$(MANDIR)/man8 |
Uwe Hermann | c2a9c9c | 2009-05-14 14:51:14 +0000 | [diff] [blame] | 299 | $(INSTALL) -m 0755 $(PROGRAM) $(DESTDIR)$(PREFIX)/sbin |
Uwe Hermann | 56b2cb0 | 2009-05-21 15:59:58 +0000 | [diff] [blame] | 300 | $(INSTALL) -m 0644 $(PROGRAM).8 $(DESTDIR)$(MANDIR)/man8 |
Uwe Hermann | c113b57 | 2006-12-14 00:59:41 +0000 | [diff] [blame] | 301 | |
Carl-Daniel Hailfinger | a23041c | 2009-06-12 14:49:10 +0000 | [diff] [blame] | 302 | export: |
Carl-Daniel Hailfinger | 48e5e09 | 2009-08-31 16:25:08 +0000 | [diff] [blame] | 303 | @rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME) |
| 304 | @svn export -r BASE . $(EXPORTDIR)/flashrom-$(RELEASENAME) |
| 305 | @sed "s/^SVNVERSION.*/SVNVERSION := $(SVNVERSION)/" Makefile >$(EXPORTDIR)/flashrom-$(RELEASENAME)/Makefile |
| 306 | @LC_ALL=C svn log >$(EXPORTDIR)/flashrom-$(RELEASENAME)/ChangeLog |
| 307 | @echo Exported $(EXPORTDIR)/flashrom-$(RELEASENAME)/ |
Carl-Daniel Hailfinger | a23041c | 2009-06-12 14:49:10 +0000 | [diff] [blame] | 308 | |
| 309 | tarball: export |
Carl-Daniel Hailfinger | 48e5e09 | 2009-08-31 16:25:08 +0000 | [diff] [blame] | 310 | @tar cjf $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2 -C $(EXPORTDIR)/ $(TAROPTIONS) flashrom-$(RELEASENAME)/ |
| 311 | @rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME) |
| 312 | @echo Created $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2 |
Carl-Daniel Hailfinger | a23041c | 2009-06-12 14:49:10 +0000 | [diff] [blame] | 313 | |
Carl-Daniel Hailfinger | b18ecbc | 2009-06-19 14:20:34 +0000 | [diff] [blame] | 314 | .PHONY: all clean distclean dep compiler pciutils features export tarball |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 315 | |
| 316 | -include .dependencies |