diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-04-21 00:48:21 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-04-21 00:48:21 +0200 |
commit | abb9a1c0c57dee989bd753984af4d88e3b9e193e (patch) | |
tree | 1d7f56eeccb940a4dc0d65572bc26aac1d3ad1bf /Makefile | |
parent | m + spawn and respawn master server (diff) | |
download | mds-abb9a1c0c57dee989bd753984af4d88e3b9e193e.tar.gz mds-abb9a1c0c57dee989bd753984af4d88e3b9e193e.tar.bz2 mds-abb9a1c0c57dee989bd753984af4d88e3b9e193e.tar.xz |
m
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r-- | Makefile | 26 |
1 files changed, 13 insertions, 13 deletions
@@ -4,32 +4,32 @@ # without any warranty. -# The package path prefix, if you want to install to another root, set DESTDIR to that root +# The package path prefix, if you want to install to another root, set DESTDIR to that root. PREFIX ?= /usr -# The command path excluding prefix +# The command path excluding prefix. BIN ?= /bin -# The library path excluding prefix +# The library path excluding prefix. LIB ?= /lib -# The executable library path excluding prefix +# The executable library path excluding prefix. LIBEXEC ?= /libexec -# The resource path excluding prefix +# The resource path excluding prefix. DATA ?= /share -# The command path including prefix +# The command path including prefix. BINDIR ?= $(PREFIX)$(BIN) -# The library path including prefix +# The library path including prefix. LIBDIR ?= $(PREFIX)$(LIB) -# The executable library path including prefix +# The executable library path including prefix. LIBEXECDIR ?= $(PREFIX)$(LIBEXEC) -# The resource path including prefix +# The resource path including prefix. DATADIR ?= $(PREFIX)$(DATA) -# The generic documentation path including prefix +# The generic documentation path including prefix. DOCDIR ?= $(DATADIR)/doc -# The info manual documentation path including prefix +# The info manual documentation path including prefix. INFODIR ?= $(DATADIR)/info -# The license base path including prefix +# The license base path including prefix. LICENSEDIR ?= $(DATADIR)/licenses -# The name of the package as it should be installed +# The name of the package as it should be installed. PKGNAME ?= blueshift |