diff options
author | Li-Ta Lo <ollie@lanl.gov> | 2004-03-17 22:22:08 +0000 |
---|---|---|
committer | Li-Ta Lo <ollie@lanl.gov> | 2004-03-17 22:22:08 +0000 |
commit | 115bd0549bfca99a49e5d929820af605dab715b1 (patch) | |
tree | 9cf65953314b057078a77b523d417c5b04821d38 /util/flash_and_burn/Makefile | |
parent | fc2ad05e6f478a16e68d926448c6337f1c4fa436 (diff) | |
download | coreboot-115bd0549bfca99a49e5d929820af605dab715b1.tar.xz |
move utility functions into new source files
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1428 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/flash_and_burn/Makefile')
-rw-r--r-- | util/flash_and_burn/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/util/flash_and_burn/Makefile b/util/flash_and_burn/Makefile index aea1ae8cd6..d87cde2413 100644 --- a/util/flash_and_burn/Makefile +++ b/util/flash_and_burn/Makefile @@ -1,5 +1,5 @@ -OBJS = jedec.o sst28sf040.o am29f040b.o mx29f002.c sst39sf020.o m29f400bt.o \ - w49f002u.o 82802ab.o msys_doc.o pm49fl004.o sst49lf040.o +OBJS = flash_enable.o udelay.o jedec.o sst28sf040.o am29f040b.o mx29f002.c sst39sf020.o \ + m29f400bt.o w49f002u.o 82802ab.o msys_doc.o pm49fl004.o sst49lf040.o CC = gcc -O2 -g -Wall -Werror all: flash_rom flash_on @@ -28,5 +28,6 @@ sst39sf020.o: sst39sf020.c sst39sf020.h jedec.h flash.h sst49lf040.o: sst49lf040.c sst49lf040.h jedec.h flash.h w49f002u.o: w49f002u.c w49f002u.h jedec.h flash.h pm49fl004.o: pm49fl004.c pm49fl004.h jedec.h flash.h - +flash_enable.o: flash_enable.c +udelay.o: udelay.c jedec.o: jedec.c jedec.h flash.h |