chiark / gitweb /
Upgrade licence to GPLv3+.
[tripe] / py / Makefile.am
CommitLineData
2fa80010
MW
1### -*-makefile-*-
2###
3### Makefile for Python core stuff
4###
5### (c) 2006 Straylight/Edgeware
6###
7
8###----- Licensing notice ---------------------------------------------------
9###
10### This file is part of Trivial IP Encryption (TrIPE).
11###
11ad66c2
MW
12### TrIPE is free software: you can redistribute it and/or modify it under
13### the terms of the GNU General Public License as published by the Free
14### Software Foundation; either version 3 of the License, or (at your
15### option) any later version.
2fa80010 16###
11ad66c2
MW
17### TrIPE is distributed in the hope that it will be useful, but WITHOUT
18### ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19### FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20### for more details.
2fa80010
MW
21###
22### You should have received a copy of the GNU General Public License
11ad66c2 23### along with TrIPE. If not, see <https://www.gnu.org/licenses/>.
2fa80010
MW
24
25include $(top_srcdir)/vars.am
26
27python_PYTHON =
28nodist_python_PYTHON =
29
30###--------------------------------------------------------------------------
31### Python modules.
32
33## Coroutine infrastructure.
34python_PYTHON += rmcr.py
35
36## Main support stuff.
37nodist_python_PYTHON += tripe.py
38CLEANFILES += tripe.py
39EXTRA_DIST += tripe.py.in
40
41tripe.py: tripe.py.in Makefile
2171b19e 42 $(SUBST) $(srcdir)/tripe.py.in >$@.new $(SUBSTITUTIONS) && \
2fa80010
MW
43 mv $@.new $@
44
45## Make sure the modules are compiled.
46all: $(python_PYTHON) $(nodist_python_PYTHON)
47
48###----- That's all, folks --------------------------------------------------