From fd17d6c4b769b250bc5510d3339d9f1577ea1ebc Mon Sep 17 00:00:00 2001 From: Agnibho Mondal Date: Thu, 8 Feb 2018 16:29:04 +0530 Subject: [PATCH] Added Makefile --- LICENSE.txt => LICENSE | 0 Makefile | 18 ++++++++++++++++++ README.txt => README | 0 3 files changed, 18 insertions(+) rename LICENSE.txt => LICENSE (100%) create mode 100644 Makefile rename README.txt => README (100%) diff --git a/LICENSE.txt b/LICENSE similarity index 100% rename from LICENSE.txt rename to LICENSE diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c7c6355 --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +SHELL = /bin/sh + +prefix = /usr/local +exec_prefix = $(prefix) +bindir = $(exec_prefix)/bin + +INSTALL = install -vb +INSTALL_PROGRAM = $(INSTALL) -m 755 + +all: + @echo "Run 'make install' for installation." + @echo "Run 'make uninstall' for uninstallation." + +install: + $(INSTALL_PROGRAM) imagecap $(DESTDIR)$(bindir) + +uninstall: + rm $(DESTDIR)$(bindir)/imagecap diff --git a/README.txt b/README similarity index 100% rename from README.txt rename to README -- 2.39.2