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