flashrom: Small cleanup in Makefile.
[coreboot.git] / util / flashrom / Makefile
index a645d4c5602ac2bb1e7c5c0fd787473c8b120382..a0c195bc29a8f49debcbce123f5707a0c286f254 100644 (file)
@@ -11,21 +11,26 @@ STRIP       = strip
 INSTALL = /usr/bin/install
 PREFIX  = /usr/local
 #CFLAGS  = -O2 -g -Wall -Werror
-CFLAGS  = -Os -Wall -Werror -DDISABLE_DOC # -DTS5300
+CFLAGS  = -Os -Wall -Werror
+LDFLAGS = 
+
 OS_ARCH        = $(shell uname)
-ifeq ($(OS_ARCH), SunOS)
-LDFLAGS = -lpci -lz
-else
-LDFLAGS = -lpci -lz
+ifneq ($(OS_ARCH), SunOS)
 STRIP_ARGS = -s
 endif
+ifeq ($(OS_ARCH), FreeBSD)
+CFLAGS += -I/usr/local/include
+LDFLAGS += -L/usr/local/lib
+endif
+
+LDFLAGS += -lpci -lz
 
-OBJS = chipset_enable.o board_enable.o udelay.o jedec.o stm50flw0x0x.c \
+OBJS = chipset_enable.o board_enable.o udelay.o jedec.o stm50flw0x0x.o \
        sst28sf040.o am29f040b.o mx29f002.o sst39sf020.o m29f400bt.o \
-       w49f002u.o 82802ab.o msys_doc.o pm49fl00x.o sst49lf040.o \
-       sst49lfxxxc.o sst_fwhub.o layout.o cbtable.o flashchips.o \
+       w49f002u.o 82802ab.o pm49fl00x.o sst49lf040.o en29f002a.o \
+       sst49lfxxxc.o sst_fwhub.o layout.o cbtable.o flashchips.o physmap.o \
        flashrom.o w39v080fa.o sharplhf00l04.o w29ee011.o spi.o it87spi.o \
-       ichspi.o
+       ichspi.o w39v040c.o sb600spi.o
 
 all: pciutils dep $(PROGRAM)
 
@@ -42,16 +47,16 @@ flashrom.o: flashrom.c
        $(CC) -c $(CFLAGS) $(SVNDEF) $(CPPFLAGS) $< -o $@
 
 clean:
-       rm -f *.o *~
+       rm -f $(PROGRAM) *.o
 
 distclean: clean
-       rm -f $(PROGRAM) .dependencies
-       
+       rm -f .dependencies
+
 dep:
        @$(CC) -MM *.c > .dependencies
 
 pciutils:
-       @echo; echo -n "Checking for pciutils and zlib... "
+       @echo; printf "Checking for pciutils and zlib... "
        @$(shell ( echo "#include <pci/pci.h>";            \
                   echo "struct pci_access *pacc;";        \
                   echo "int main(int argc, char **argv)"; \
@@ -64,11 +69,10 @@ pciutils:
        @rm -f .test.c .test
 
 install: $(PROGRAM)
-       $(INSTALL) flashrom $(PREFIX)/sbin
+       $(INSTALL) $(PROGRAM) $(PREFIX)/sbin
        mkdir -p $(PREFIX)/share/man/man8
        $(INSTALL) $(PROGRAM).8 $(PREFIX)/share/man/man8
 
 .PHONY: all clean distclean dep pciutils
 
 -include .dependencies
-