From 26b713807a3771ff2ca066d2cd91de7f50081186 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Fri, 19 Oct 2012 13:06:35 -0400 Subject: [PATCH] add install target --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index cf74fb1..29bf438 100644 --- a/Makefile +++ b/Makefile @@ -2,5 +2,9 @@ TARGET := gvim-wrapper CFLAGS := -mno-cygwin -std=gnu99 -mwindows LDFLAGS := -mno-cygwin -mwindows +INSTALL_DIR ?= /c/apps/bin all: $(TARGET) + +install: $(TARGET) + cp $(TARGET) $(INSTALL_DIR)