| OLD | NEW |
| 1 # | 1 # |
| 2 # This file is part of the flashrom project. | 2 # This file is part of the flashrom project. |
| 3 # | 3 # |
| 4 # Copyright (C) 2005 coresystems GmbH <stepan@coresystems.de> | 4 # Copyright (C) 2005 coresystems GmbH <stepan@coresystems.de> |
| 5 # Copyright (C) 2009,2010 Carl-Daniel Hailfinger | 5 # Copyright (C) 2009,2010 Carl-Daniel Hailfinger |
| 6 # | 6 # |
| 7 # This program is free software; you can redistribute it and/or modify | 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 | 8 # it under the terms of the GNU General Public License as published by |
| 9 # the Free Software Foundation; version 2 of the License. | 9 # the Free Software Foundation; version 2 of the License. |
| 10 # | 10 # |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 # Disable Dediprog SF100 until support is complete and tested. | 160 # Disable Dediprog SF100 until support is complete and tested. |
| 161 CONFIG_DEDIPROG ?= no | 161 CONFIG_DEDIPROG ?= no |
| 162 | 162 |
| 163 # Disable wiki printing by default. It is only useful if you have wiki access. | 163 # Disable wiki printing by default. It is only useful if you have wiki access. |
| 164 CONFIG_PRINT_WIKI ?= no | 164 CONFIG_PRINT_WIKI ?= no |
| 165 | 165 |
| 166 ifeq ($(CONFIG_INTERNAL), yes) | 166 ifeq ($(CONFIG_INTERNAL), yes) |
| 167 FEATURE_CFLAGS += -D'CONFIG_INTERNAL=1' | 167 FEATURE_CFLAGS += -D'CONFIG_INTERNAL=1' |
| 168 PROGRAMMER_OBJS += processor_enable.o chipset_enable.o board_enable.o cbtable.o
dmi.o internal.o | 168 PROGRAMMER_OBJS += processor_enable.o chipset_enable.o board_enable.o cbtable.o
dmi.o internal.o |
| 169 # FIXME: The PROGRAMMER_OBJS below should only be included on x86. | 169 # FIXME: The PROGRAMMER_OBJS below should only be included on x86. |
| 170 PROGRAMMER_OBJS += it87spi.o ichspi.o sb600spi.o wbsio_spi.o mcp6x_spi.o | 170 PROGRAMMER_OBJS += it87spi.o it85spi.o ichspi.o sb600spi.o wbsio_spi.o mcp6x_spi
.o |
| 171 NEED_PCI := yes | 171 NEED_PCI := yes |
| 172 endif | 172 endif |
| 173 | 173 |
| 174 ifeq ($(CONFIG_SERPROG), yes) | 174 ifeq ($(CONFIG_SERPROG), yes) |
| 175 FEATURE_CFLAGS += -D'CONFIG_SERPROG=1' | 175 FEATURE_CFLAGS += -D'CONFIG_SERPROG=1' |
| 176 PROGRAMMER_OBJS += serprog.o | 176 PROGRAMMER_OBJS += serprog.o |
| 177 NEED_SERIAL := yes | 177 NEED_SERIAL := yes |
| 178 NEED_NET := yes | 178 NEED_NET := yes |
| 179 endif | 179 endif |
| 180 | 180 |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 430 @tar cjf $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2 -C $(EXPORTDIR)/ $
(TAROPTIONS) flashrom-$(RELEASENAME)/ | 430 @tar cjf $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2 -C $(EXPORTDIR)/ $
(TAROPTIONS) flashrom-$(RELEASENAME)/ |
| 431 @rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME) | 431 @rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME) |
| 432 @echo Created $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2 | 432 @echo Created $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2 |
| 433 | 433 |
| 434 djgpp-dos: clean | 434 djgpp-dos: clean |
| 435 make CC=i586-pc-msdosdjgpp-gcc STRIP=i586-pc-msdosdjgpp-strip WARNERROR=
no OS_ARCH=DOS | 435 make CC=i586-pc-msdosdjgpp-gcc STRIP=i586-pc-msdosdjgpp-strip WARNERROR=
no OS_ARCH=DOS |
| 436 | 436 |
| 437 .PHONY: all clean distclean compiler pciutils features export tarball dos featur
esavailable | 437 .PHONY: all clean distclean compiler pciutils features export tarball dos featur
esavailable |
| 438 | 438 |
| 439 -include $(OBJS:.o=.d) | 439 -include $(OBJS:.o=.d) |
| OLD | NEW |