From 5242883aa7e0abeafa518d8d2a8ff6d7031322c2 Mon Sep 17 00:00:00 2001 From: Mariano Alvira Date: Mon, 6 Sep 2010 11:08:36 -0400 Subject: [PATCH] add simple install rule --- tools/ftditools/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tools/ftditools/Makefile b/tools/ftditools/Makefile index 0e07771ae..951e0d0f6 100644 --- a/tools/ftditools/Makefile +++ b/tools/ftditools/Makefile @@ -1,3 +1,7 @@ +INSTALL= /usr/local/bin + +################ + LDFLAGS = -lftdi TARGETS = bbmc @@ -8,3 +12,6 @@ all: $(TARGETS) clean: -rm $(TARGETS) + +install: all + cp bbmc $(INSTALL) \ No newline at end of file