diff options
-rw-r--r-- | INSTALL | 10 | ||||
-rw-r--r-- | Makefile | 24 |
2 files changed, 34 insertions, 0 deletions
@@ -0,0 +1,10 @@ +Use 'make install' to install soxdial. + +You can set these variables on the make command line to control the +install paths: + +DESTDIR (default: "") +PREFIX (default: /usr) +BINDIR (default: $PREFIX/bin) +MANDIR (default: $PREFIX/share/man) +DOCDIR (default: $PREFIX/share/doc/soxdial) diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b7deaf6 --- /dev/null +++ b/Makefile @@ -0,0 +1,24 @@ +DESTDIR= +PREFIX=/usr +BINDIR=$(PREFIX)/bin +MANDIR=$(PREFIX)/share/man +MAN1DIR=$(MANDIR)/man1 +DOCDIR=$(PREFIX)/share/doc/soxdial + +PROG=soxdial +MAN=$(PROG).1 + +all: + @cat INSTALL + +$(MAN): $(PROG) + perl $(PROG) --man > $(MAN) + +install: $(MAN) + mkdir -p $(DESTDIR)$(BINDIR) $(DESTDIR)$(MAN1DIR) $(DESTDIR)$(DOCDIR) + cp $(PROG) $(DESTDIR)$(BINDIR) + chmod 755 $(DESTDIR)$(BINDIR)/$(PROG) + cp $(MAN) $(DESTDIR)$(MAN1DIR) + gzip -9 $(DESTDIR)$(MAN1DIR)/$(MAN) + cp README $(DESTDIR)$(DOCDIR) + chmod 644 $(DESTDIR)$(MAN1DIR)/$(MAN).gz $(DESTDIR)$(DOCDIR)/README |