From: Steven Schubiger Date: Sat, 24 Dec 2016 22:49:29 +0000 (+0100) Subject: Add Makefile install target X-Git-Tag: v0.60~13 X-Git-Url: http://git.refcnt.org/?p=colorize.git;a=commitdiff_plain;h=335d8c673c1251977c98bcd964cb2d6831c0c9f8 Add Makefile install target --- diff --git a/Makefile b/Makefile index 2c111eb..381f11a 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: check check_valgrind clean release +.PHONY: check check_valgrind install clean release .SUFFIXES: .SUFFIXES: .c .o @@ -19,6 +19,10 @@ check_valgrind: @which valgrind >/dev/null 2>&1 || (printf '%s\n' "valgrind not found" && exit 1) perl ./test.pl --valgrind || exit 0 +install: + test ! -d $(DESTDIR)/usr/bin && mkdir -p $(DESTDIR)/usr/bin || exit 0 + cp colorize $(DESTDIR)/usr/bin + clean: rm -f a.out colorize debug.txt version.h