1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-26 22:52:34 +02:00
flashrom/Makefile
Ronald G. Minnich c73ad98798 This will now enable flash automagically for chipsets on which it knows how
Currently, only e7500 supported, but it is easy to add more.

Corresponding to coreboot v1 svn r744.
2003-02-11 21:06:09 +00:00

12 lines
256 B
Makefile

OBJS = jedec.o sst28sf040.o am29f040b.o mx29f002.c sst39sf020.o m29f400bt.o \
w49f002u.o
OBJS += 82802ab.o
CC = gcc -O2 -g
all: ${OBJS}
${CC} -o flash_rom flash_rom.c ${OBJS} -lpci
# ${CC} -o flash_on flash_on.c
clean:
rm -f flash_rom flash_on *.o *~