aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-11-28 02:18:50 +0100
committerMattias Andrée <maandree@operamail.com>2015-11-28 02:18:50 +0100
commit8fd1b36e7b4b688c56d46731ad3ff94c27f45a5d (patch)
treeba0d8d0315440e480e11ec0fedd97b1686d5c770
parentimport time and math in the functions to reduce output of help(solar_python) (diff)
downloadsolar-python-8fd1b36e7b4b688c56d46731ad3ff94c27f45a5d.tar.gz
solar-python-8fd1b36e7b4b688c56d46731ad3ff94c27f45a5d.tar.bz2
solar-python-8fd1b36e7b4b688c56d46731ad3ff94c27f45a5d.tar.xz
m makefile
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r--Makefile20
1 files changed, 10 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index 66c1156..44d8aef 100644
--- a/Makefile
+++ b/Makefile
@@ -5,24 +5,24 @@
# The package path prefix, if you want to install to another root, set DESTDIR to that root
-PREFIX ?= /usr
+PREFIX = /usr
# The library path excluding prefix
-LIB ?= /lib
+LIB = /lib
# The resource path excluding prefix
-DATA ?= /share
+DATA = /share
# The library path including prefix
-LIBDIR ?= $(PREFIX)$(LIB)
+LIBDIR = $(PREFIX)$(LIB)
# The resource path including prefix
-DATADIR ?= $(PREFIX)$(DATA)
+DATADIR = $(PREFIX)$(DATA)
# The generic documentation path including prefix
-DOCDIR ?= $(DATADIR)/doc
+DOCDIR = $(DATADIR)/doc
# The info manual documentation path including prefix
-INFODIR ?= $(DATADIR)/info
+INFODIR = $(DATADIR)/info
# The license base path including prefix
-LICENSEDIR ?= $(DATADIR)/licenses
+LICENSEDIR = $(DATADIR)/licenses
# The name of the package as it should be installed
-PKGNAME ?= solar-python
+PKGNAME = solar-python
# The major version number of the current Python installation
PY_MAJOR = 3
@@ -120,5 +120,5 @@ uninstall:
.PHONY: clean
clean:
- -rm -r src/__pycache__
+ -rm -r src/__pycache__ obj bin