| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 else | 80 else |
| 81 override CONFIG_FT2232_SPI = no | 81 override CONFIG_FT2232_SPI = no |
| 82 endif | 82 endif |
| 83 endif | 83 endif |
| 84 | 84 |
| 85 CHIP_OBJS = jedec.o stm50flw0x0x.o w39.o w29ee011.o \ | 85 CHIP_OBJS = jedec.o stm50flw0x0x.o w39.o w29ee011.o \ |
| 86 sst28sf040.o m29f400bt.o 82802ab.o pm49fl00x.o \ | 86 sst28sf040.o m29f400bt.o 82802ab.o pm49fl00x.o \ |
| 87 sst49lfxxxc.o sst_fwhub.o flashchips.o spi.o spi25.o sharplhf00l04.o \ | 87 sst49lfxxxc.o sst_fwhub.o flashchips.o spi.o spi25.o sharplhf00l04.o \ |
| 88 wpce775x.o mec1308.o writeprotect.o | 88 wpce775x.o mec1308.o writeprotect.o |
| 89 | 89 |
| 90 LIB_OBJS = layout.o | 90 LIB_OBJS = layout.o fmap.o |
| 91 | 91 |
| 92 LOCK_OBJS = csem.o ipc_lock.o big_lock.o | 92 LOCK_OBJS = csem.o ipc_lock.o big_lock.o |
| 93 ifeq ($(shell ./util/use_big_lock.sh), 0) | 93 ifeq ($(shell ./util/use_big_lock.sh), 0) |
| 94 LIB_OBJS += $(LOCK_OBJS) | 94 LIB_OBJS += $(LOCK_OBJS) |
| 95 FEATURE_CFLAGS += -D'USE_BIG_LOCK=1' | 95 FEATURE_CFLAGS += -D'USE_BIG_LOCK=1' |
| 96 endif | 96 endif |
| 97 | 97 |
| 98 CLI_OBJS = flashrom.o cli_classic.o cli_mfg.o cli_output.o print.o | 98 CLI_OBJS = flashrom.o cli_classic.o cli_mfg.o cli_output.o print.o |
| 99 | 99 |
| 100 PROGRAMMER_OBJS = udelay.o programmer.o | 100 PROGRAMMER_OBJS = udelay.o programmer.o |
| (...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 463 @tar cjf $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2 -C $(EXPORTDIR)/ $
(TAROPTIONS) flashrom-$(RELEASENAME)/ | 463 @tar cjf $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2 -C $(EXPORTDIR)/ $
(TAROPTIONS) flashrom-$(RELEASENAME)/ |
| 464 @rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME) | 464 @rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME) |
| 465 @echo Created $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2 | 465 @echo Created $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2 |
| 466 | 466 |
| 467 djgpp-dos: clean | 467 djgpp-dos: clean |
| 468 make CC=i586-pc-msdosdjgpp-gcc STRIP=i586-pc-msdosdjgpp-strip WARNERROR=
no OS_ARCH=DOS | 468 make CC=i586-pc-msdosdjgpp-gcc STRIP=i586-pc-msdosdjgpp-strip WARNERROR=
no OS_ARCH=DOS |
| 469 | 469 |
| 470 .PHONY: all clean distclean compiler pciutils features export tarball dos featur
esavailable | 470 .PHONY: all clean distclean compiler pciutils features export tarball dos featur
esavailable |
| 471 | 471 |
| 472 -include $(OBJS:.o=.d) | 472 -include $(OBJS:.o=.d) |
| OLD | NEW |