Makefile 728 Bytes
Newer Older
1 2 3 4 5
#
# Makefile for flash_rom
# 
# redone by Stefan Reinauer <stepan@openbios.org>
#
6

7
PROGRAM = flashrom
Ronald G. Minnich's avatar
Ronald G. Minnich committed
8

9 10 11 12 13
CC      = gcc
STRIP	= strip
#CFLAGS  = -O2 -g -Wall -Werror
CFLAGS  = -Os -Wall -Werror -DDISABLE_DOC
LDFLAGS = -lpci -static
Ronald G. Minnich's avatar
Ronald G. Minnich committed
14

15 16 17 18 19 20 21 22 23 24

OBJS  = flash_enable.o udelay.o jedec.o sst28sf040.o am29f040b.o mx29f002.o  \
	sst39sf020.o m29f400bt.o w49f002u.o 82802ab.o msys_doc.o pm49fl004.o \
	sst49lf040.o sst_fwhub.o layout.o lbtable.o flashchips.o flash_rom.o

all: dep $(PROGRAM)

$(PROGRAM): $(OBJS)
	$(CC) -o $(PROGRAM) $(OBJS) $(LDFLAGS)
	$(STRIP) -s $(PROGRAM)
25 26

clean:
27 28 29 30 31 32 33 34 35 36 37 38
	rm -f *.o *~

distclean: clean
	rm -f $(PROGRAM) .dependencies
	
dep:
	@$(CC) -MM *.c > .dependencies

.PHONY: all clean distclean dep 

-include .dependencies