tools: use install and /usr/local (as suggested by David Kuehling)

This commit is contained in:
Sebastien Bourdeauducq 2012-02-08 15:09:07 +01:00
parent bfd2bf4ed3
commit 0654bf4583
1 changed files with 2 additions and 2 deletions

View File

@ -7,8 +7,8 @@ all: $(TARGETS)
$(CC) -O2 -Wall -I. -s -o $@ $<
install: mkmmimg flterm
cp mkmmimg /usr/bin
cp flterm /usr/bin
install -d /usr/local/bin
install -m755 -t /usr/local/bin $^
.PHONY: clean install