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