| 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 w39v040c.o w39v080fa.o w29ee011.o \ | 85 CHIP_OBJS = jedec.o stm50flw0x0x.o w39v040c.o w39v080fa.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 writeprotect.o | 88 wpce775x.o writeprotect.o |
| 89 | 89 |
| 90 LIB_OBJS = layout.o | 90 LIB_OBJS = layout.o fmap.o |
| 91 | 91 |
| 92 CLI_OBJS = flashrom.o cli_classic.o cli_mfg.o cli_output.o print.o | 92 CLI_OBJS = flashrom.o cli_classic.o cli_mfg.o cli_output.o print.o |
| 93 | 93 |
| 94 PROGRAMMER_OBJS = udelay.o programmer.o | 94 PROGRAMMER_OBJS = udelay.o programmer.o |
| 95 | 95 |
| 96 all: pciutils features $(PROGRAM)$(EXEC_SUFFIX) | 96 all: pciutils features $(PROGRAM)$(EXEC_SUFFIX) |
| 97 | 97 |
| 98 # Set the flashrom version string from the highest revision number | 98 # Set the flashrom version string from the highest revision number |
| 99 # of the checked out flashrom files. | 99 # of the checked out flashrom files. |
| 100 # Note to packagers: Any tree exported with "make export" or "make tarball" | 100 # Note to packagers: Any tree exported with "make export" or "make tarball" |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 444 @tar cjf $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2 -C $(EXPORTDIR)/ $
(TAROPTIONS) flashrom-$(RELEASENAME)/ | 444 @tar cjf $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2 -C $(EXPORTDIR)/ $
(TAROPTIONS) flashrom-$(RELEASENAME)/ |
| 445 @rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME) | 445 @rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME) |
| 446 @echo Created $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2 | 446 @echo Created $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2 |
| 447 | 447 |
| 448 djgpp-dos: clean | 448 djgpp-dos: clean |
| 449 make CC=i586-pc-msdosdjgpp-gcc STRIP=i586-pc-msdosdjgpp-strip WARNERROR=
no OS_ARCH=DOS | 449 make CC=i586-pc-msdosdjgpp-gcc STRIP=i586-pc-msdosdjgpp-strip WARNERROR=
no OS_ARCH=DOS |
| 450 | 450 |
| 451 .PHONY: all clean distclean compiler pciutils features export tarball dos featur
esavailable | 451 .PHONY: all clean distclean compiler pciutils features export tarball dos featur
esavailable |
| 452 | 452 |
| 453 -include $(OBJS:.o=.d) | 453 -include $(OBJS:.o=.d) |
| OLD | NEW |