-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
191 lines (143 loc) · 5.15 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
# Copyright © 2013, 2014, 2015 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 command path excluding prefix
BIN = /bin
# The resource path excluding prefix
DATA = /share
# The command path including prefix
BINDIR = $(PREFIX)$(BIN)
# The resource path including prefix
DATADIR = $(PREFIX)$(DATA)
# The generic documentation path including prefix
DOCDIR = $(DATADIR)/doc
# The man page documentation path including prefix
MANDIR = $(DATADIR)/man
# The info manual documentation path including prefix
INFODIR = $(DATADIR)/info
# The license base path including prefix
LICENSEDIR = $(DATADIR)/licenses
# Python 3 command to use in shebangs
SHEBANG = /usr/bin/env python3
# The name of the package as it should be installed
PKGNAME = featherweight
# The name of the command as it should be installed
COMMAND = featherweight
# 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)
# Python source files
SRC = __main__ common feeds flocker parser trees updater
.PHONY: default
default: command info
.PHONY: all
all: command doc
.PHONY: command
command: bin/featherweight
bin/featherweight: obj/featherweight.zip
@mkdir -p bin
echo '#!$(SHEBANG)' > $@
cat $< >> $@
chmod a+x $@
obj/featherweight.zip: $(foreach F,$(SRC),src/$(F).py src/__pycache__/$(F).cpython-$(PY_VER).pyc src/__pycache__/$(F).cpython-$(PY_VER).pyo)
@mkdir -p obj
cd src && zip ../$@ $(foreach F,$(SRC),$(F).py __pycache__/$(F).cpython-$(PY_VER).pyc __pycache__/$(F).cpython-$(PY_VER).pyo)
.PHONY: compiled
compiled: $(foreach F,$(SRC),src/__pycache__/$(F).cpython-$(PY_VER).pyc)
.PHONY: optimised
optimised: $(foreach F,$(SRC),src/__pycache__/$(F).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: doc
doc: info pdf dvi ps
.PHONY: info
info: bin/featherweight.info
bin/%.info: info/%.texinfo info/fdl.texinfo
@mkdir -p obj/info bin
cd obj/info && makeinfo ../../$<
mv obj/info/$*.info bin/$*.info
.PHONY: pdf
pdf: bin/featherweight.pdf
bin/%.pdf: info/%.texinfo info/fdl.texinfo
@mkdir -p obj/pdf bin
cd obj/pdf && yes X | texi2pdf ../../$< < /dev/null
mv obj/pdf/$*.pdf bin/$*.pdf
.PHONY: dvi
dvi: bin/featherweight.dvi
bin/%.dvi: info/%.texinfo info/fdl.texinfo
@mkdir -p obj/dvi bin
cd obj/dvi && yes X | $(TEXI2DVI) ../../$< < /dev/null
mv obj/dvi/$*.dvi bin/$*.dvi
.PHONY: ps
ps: bin/featherweight.ps
bin/%.ps: info/%.texinfo info/fdl.texinfo
@mkdir -p obj/ps bin
cd obj/ps && yes X | texi2pdf --ps ../../$< < /dev/null
mv obj/ps/$*.ps bin/$*.ps
.PHONY: install
install: install-base install-info
.PHONY: install
install-all: install-base install-doc
.PHONY: install-base
install-base: install-command install-copyright
.PHONY: install-command
install-command: bin/featherweight
install -dm755 -- "$(DESTDIR)$(BINDIR)"
install -m755 $< -- "$(DESTDIR)$(BINDIR)/$(COMMAND)"
.PHONY: install-copyright
install-copyright: install-copying install-license
.PHONY: install-copying
install-copying:
install -dm755 -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)"
install -m644 COPYING -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)"
.PHONY: install-license
install-license:
install -dm755 -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)"
install -m644 LICENSE -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)"
.PHONY: install-doc
install-doc: install-info install-pdf install-ps install-dvi
.PHONY: install-info
install-info: bin/featherweight.info
install -dm755 -- "$(DESTDIR)$(INFODIR)"
install -m644 $< -- "$(DESTDIR)$(INFODIR)/$(PKGNAME).info"
.PHONY: install-pdf
install-pdf: bin/featherweight.pdf
install -dm755 -- "$(DESTDIR)$(DOCDIR)"
install -m644 $< -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME).pdf"
.PHONY: install-ps
install-ps: bin/featherweight.ps
install -dm755 -- "$(DESTDIR)$(DOCDIR)"
install -m644 $< -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME).ps"
.PHONY: install-dvi
install-dvi: bin/featherweight.dvi
install -dm755 -- "$(DESTDIR)$(DOCDIR)"
install -m644 $< -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME).dvi"
.PHONY: uninstall
uninstall:
-rm -- "$(DESTDIR)$(BINDIR)/$(COMMAND)"
-rm -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)/COPYING"
-rm -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)/LICENSE"
-rmdir -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)"
-rmdir -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME)/examples"
-rmdir -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME)"
-rm -- "$(DESTDIR)$(INFODIR)/$(PKGNAME).info"
-rm -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME).pdf"
-rm -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME).ps"
-rm -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME).dvi"
.PHONY: clean
clean:
-rm -r bin obj src/__pycache__