diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2005-12-01 16:19:24 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@coresystems.de> | 2005-12-01 16:19:24 +0000 |
commit | 57e5ec2d2771add1f9dfb0ab3fab797937e9926f (patch) | |
tree | 14eef38e576a66cb37fd2b760bb3f8504e26b779 | |
parent | 1e20df80704c8281f83fb50cb7edf517414fd87d (diff) | |
download | flashrom-57e5ec2d2771add1f9dfb0ab3fab797937e9926f.zip flashrom-57e5ec2d2771add1f9dfb0ab3fab797937e9926f.tar.gz |
Make flashrom utility build process more solid
Corresponding to flashrom svn r36 and coreboot v2 svn r2117.
-rw-r--r-- | Makefile | 17 |
1 files changed, 15 insertions, 2 deletions
@@ -17,7 +17,7 @@ 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) +all: pciutils dep $(PROGRAM) $(PROGRAM): $(OBJS) $(CC) -o $(PROGRAM) $(OBJS) $(LDFLAGS) @@ -32,7 +32,20 @@ distclean: clean dep: @$(CC) -MM *.c > .dependencies -.PHONY: all clean distclean dep +pciutils: + @echo; echo -n "Checking for pciutils... " + @$(shell ( echo "#include <pci/pci.h>"; \ + echo "struct pci_access *pacc;"; \ + echo "int main(int argc, char **argv)"; \ + echo "{ pacc = pci_alloc(); return 0; }"; ) > .test.c ) + @$(CC) $(CFLAGS) .test.c -o .test $(LDFLAGS) &>/dev/null && \ + echo "found." || ( echo "not found."; echo; \ + echo "Please install pciutils and pciutils-devel."; \ + echo "See README for more information."; echo; \ + rm -f .test.c .test; exit 1) + @rm -f .test.c .test + +.PHONY: all clean distclean dep pciutils -include .dependencies |