diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-11-28 02:18:50 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-11-28 02:18:50 +0100 |
commit | 8fd1b36e7b4b688c56d46731ad3ff94c27f45a5d (patch) | |
tree | ba0d8d0315440e480e11ec0fedd97b1686d5c770 /Makefile | |
parent | import time and math in the functions to reduce output of help(solar_python) (diff) | |
download | solar-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>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -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 |