From: PHO <pho@cielonegro.org>
Date: Tue, 24 May 2011 03:43:07 +0000 (+0900)
Subject: +Makefile
X-Git-Url: https://git.cielonegro.org/gitweb.cgi?a=commitdiff_plain;h=9bf1b2b6e9aa42779651dad61685a16ae9e6973f;p=stowinstall.git

+Makefile
---

diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..f3d30f3
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,10 @@
+prefix = /usr/local
+bindir = $(prefix)/bin
+
+all:
+
+install:
+	install -d $(DESTDIR)$(bindir)
+	install stowinstall $(DESTDIR)$(bindir)
+
+.PHONY: all install