From c265fc5891c549363a7101e70083caf0d3da48ba Mon Sep 17 00:00:00 2001 From: j8takagi Date: Mon, 15 Oct 2012 11:43:24 +0900 Subject: [PATCH] =?utf8?q?=E3=82=A4=E3=83=B3=E3=82=B9=E3=83=88=E3=83=BC?= =?utf8?q?=E3=83=AB=E8=87=AA=E5=8B=95=E5=8C=96=E3=81=AE=E3=81=9F=E3=82=81?= =?utf8?q?=E3=80=81Makefile=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f72d59e --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +.PHONY: build install + +PREFIX = /usr/local +INSTALLDIR = $(PREFIX)/bin + +ECHO = echo +INSTALL = install +build: + @$(ECHO) "nothing is needed to build." + +install: logcat dpkg-history + $(INSTALL) -m 755 logcat $(INSTALLDIR) + $(INSTALL) -m 755 dpkg-history $(INSTALLDIR) + +clean: + @$(ECHO) "nothing is needed to clean." -- 2.18.0