diff options
| author | Mattias Andrée <maandree@operamail.com> | 2014-11-27 08:23:02 +0100 |
|---|---|---|
| committer | Mattias Andrée <maandree@operamail.com> | 2014-11-27 08:23:02 +0100 |
| commit | 41466f29f4239fea88f4aea20b5511546170b1c5 (patch) | |
| tree | b702acc6f8ef87ad104e7121e9618199c8d714ec | |
| parent | missed to bump the year on one of the files (diff) | |
| download | pytagomacs-41466f29f4239fea88f4aea20b5511546170b1c5.tar.gz pytagomacs-41466f29f4239fea88f4aea20b5511546170b1c5.tar.bz2 pytagomacs-41466f29f4239fea88f4aea20b5511546170b1c5.tar.xz | |
add makefile
Signed-off-by: Mattias Andrée <maandree@operamail.com>
| -rw-r--r-- | Makefile | 125 |
1 files changed, 125 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..cc57168 --- /dev/null +++ b/Makefile @@ -0,0 +1,125 @@ +# Copyright © 2013, 2014 Mattias Andrée (maandree@member.fsf.org) +# +# Copying and distribution of this file, with or without modification, +# are permitted in any medium without royalty provided the copyright +# notice and this notice are preserved. This file is offered as-is, +# without any warranty. +# +# [GNU All Permissive License] + + +# The package path prefix, if you want to install to another root, set DESTDIR to that root +PREFIX = /usr +# The resource path excluding prefix +DATA = /share +# The library path excluding prefix +LIB = /lib +# The resource path including prefix +DATADIR = $(PREFIX)$(DATA) +# The library path including prefix +LIBDIR = $(PREFIX)$(LIB) +# The generic documentation path including prefix +DOCDIR = $(DATADIR)/doc +# The info manual documentation path including prefix +INFODIR = $(DATADIR)/info +# The license base path including prefix +LICENSEDIR = $(DATADIR)/licenses + +# The name of the package as it should be installed +PKGNAME = pytagomacs +# The name of the module as it should be installed +MODULE = pytagomacs + +# The major version number of the current Python installation +PY_MAJOR = 3 +# The minor version number of the current Python installation +PY_MINOR = 4 +# The version number of the current Python installation without a dot +PY_VER = $(PY_MAJOR)$(PY_MINOR) +# The version number of the current Python installation with a dot +PY_VERSION = $(PY_MAJOR).$(PY_MINOR) + +# The modules this library is comprised of +SRC = common editor editring killring line + + + +.PHONY: all +all: compiled optimised + +.PHONY: compiled +compiled: $(foreach M,$(SRC),src/__pycache__/$(M).cpython-$(PY_VER).pyc) + +.PHONY: optimised +optimised: $(foreach M,$(SRC),src/__pycache__/$(M).cpython-$(PY_VER).pyo) + + +src/__pycache__/%.cpython-$(PY_VER).pyc: src/%.py + python -m compileall $< + +src/__pycache__/%.cpython-$(PY_VER).pyo: src/%.py + python -OO -m compileall $< + + + +.PHONY: install +install: install-base + +.PHONY: install-all +install-all: install-base + +.PHONY: install-base +install-base: install-lib install-copyright + + +.PHONY: install-lib +install-lib: install-source install-compiled install-optimised + +.PHONY: install-source +install-source: $(foreach M,$(SRC),src/$(M).py) + install -dm755 -- "$(DESTDIR)$(LIBDIR)/python$(PY_VERSION)/$(MODULE)" + install -m644 $^ -- "$(DESTDIR)$(LIBDIR)/python$(PY_VERSION)/$(MODULE)" + +.PHONY: install-compiled +install-compiled: $(foreach M,$(SRC),src/__pycache__/$(M).cpython-$(PY_VER).pyc) + install -dm755 -- "$(DESTDIR)$(LIBDIR)/python$(PY_VERSION)/$(MODULE)/__pycache__" + install -m644 $^ -- "$(DESTDIR)$(LIBDIR)/python$(PY_VERSION)/$(MODULE)/__pycache__" + +.PHONY: install-optimised +install-optimised: $(foreach M,$(SRC),src/__pycache__/$(M).cpython-$(PY_VER).pyo) + install -dm755 -- "$(DESTDIR)$(LIBDIR)/python$(PY_VERSION)/$(MODULE)/__pycache__" + install -m644 $^ -- "$(DESTDIR)$(LIBDIR)/python$(PY_VERSION)/$(MODULE)/__pycache__" + + +.PHONY: install-copyright +install-copyright: install-copying install-license + +.PHONY: install-copying +install-copying: COPYING + install -dm755 -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)" + install -m644 $^ -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)" + +.PHONY: install-license +install-license: LICENSE + install -dm755 -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)" + install -m644 $^ -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)" + + + +.PHONY: uninstall +uninstall: + -rm -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)/LICENSE" + -rm -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)/COPYING" + -rmdir -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)" + -rm -- $(foreach M,$(SRC),"$(DESTDIR)$(LIBDIR)/python$(PY_VERSION)/$(MODULE)/__pycache__/$(M).cpython-$(PY_VER).pyo") + -rm -- $(foreach M,$(SRC),"$(DESTDIR)$(LIBDIR)/python$(PY_VERSION)/$(MODULE)/__pycache__/$(M).cpython-$(PY_VER).pyc") + -rm -- $(foreach M,$(SRC),"$(DESTDIR)$(LIBDIR)/python$(PY_VERSION)/$(MODULE)/$(M).py") + -rmdir -- "$(DESTDIR)$(LIBDIR)/python$(PY_VERSION)/$(MODULE)/__pycache__/" + -rmdir -- "$(DESTDIR)$(LIBDIR)/python$(PY_VERSION)/$(MODULE)" + + + +.PHONY: clean +clean: + -rm -r src/__pycache__ + |
