]> Softwares of Agnibho - imagecap.git/blobdiff - Makefile
Added Makefile
[imagecap.git] / Makefile
diff --git a/Makefile b/Makefile
new file mode 100644 (file)
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