diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-11-27 08:44:16 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-11-27 08:44:16 +0100 |
commit | af9ac9c490b3c60c68671ad55a75b81272c3e8ec (patch) | |
tree | c12c58d8bf1ba86f4e1851813a091492edfc2284 | |
parent | update readme (diff) | |
download | alarm-af9ac9c490b3c60c68671ad55a75b81272c3e8ec.tar.gz alarm-af9ac9c490b3c60c68671ad55a75b81272c3e8ec.tar.bz2 alarm-af9ac9c490b3c60c68671ad55a75b81272c3e8ec.tar.xz |
m makefile
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r-- | Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -5,22 +5,22 @@ # The package path prefix, if you want to install to another root, set DESTDIR to that root. -PREFIX ?= /usr +PREFIX = /usr # The command path excluding prefix. -BIN ?= /bin +BIN = /bin # The resource path excluding prefix. -DATA ?= /share +DATA = /share # The command path including prefix. -BINDIR ?= $(PREFIX)$(BIN) +BINDIR = $(PREFIX)$(BIN) # The resource path including prefix. -DATADIR ?= $(PREFIX)$(DATA) +DATADIR = $(PREFIX)$(DATA) # The license base path including prefix. -LICENSEDIR ?= $(DATADIR)/licenses +LICENSEDIR = $(DATADIR)/licenses # The name of the package as it should be installed. -PKGNAME ?= alarm +PKGNAME = alarm # The name of the command as it should be installed. -COMMAND ?= alarm +COMMAND = alarm # Optimisation level (and debug flags.) |