Add an install target to the flashrom Makefile which installs flashrom
into /usr/local/bin. Closes #54. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2524 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
@@ -8,6 +8,8 @@ PROGRAM = flashrom
|
|||||||
|
|
||||||
CC = gcc
|
CC = gcc
|
||||||
STRIP = strip
|
STRIP = strip
|
||||||
|
INSTALL = /usr/bin/install
|
||||||
|
PREFIX = /usr/local
|
||||||
#CFLAGS = -O2 -g -Wall -Werror
|
#CFLAGS = -O2 -g -Wall -Werror
|
||||||
CFLAGS = -Os -Wall -Werror -DDISABLE_DOC # -DTS5300
|
CFLAGS = -Os -Wall -Werror -DDISABLE_DOC # -DTS5300
|
||||||
LDFLAGS = -lpci -lz -static
|
LDFLAGS = -lpci -lz -static
|
||||||
@@ -45,6 +47,9 @@ pciutils:
|
|||||||
rm -f .test.c .test; exit 1)
|
rm -f .test.c .test; exit 1)
|
||||||
@rm -f .test.c .test
|
@rm -f .test.c .test
|
||||||
|
|
||||||
|
install: $(PROGRAM)
|
||||||
|
$(INSTALL) flashrom $(PREFIX)/bin
|
||||||
|
|
||||||
.PHONY: all clean distclean dep pciutils
|
.PHONY: all clean distclean dep pciutils
|
||||||
|
|
||||||
-include .dependencies
|
-include .dependencies
|
||||||
|
Reference in New Issue
Block a user