From de3091cc8394f578cbd047ab218a7bef11ee55b7 Mon Sep 17 00:00:00 2001 From: lakinduakash Date: Sun, 14 Apr 2019 22:31:15 +0530 Subject: [PATCH] Add new makefile --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d7f5b5d --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +PREFIX=/usr +MANDIR=$(PREFIX)/share/man +BINDIR=$(PREFIX)/bin + +all: + @echo "Run 'make install' for installation." + @echo "Run 'make uninstall' for uninstallation." + +install: + $(MAKE) -C src/scripts install + +uninstall: + $(MAKE) -C src/scripts uninstall