-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
150 lines (116 loc) · 4.02 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
# 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.
# 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 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 command as it should be installed
COMMAND = pony.computer
# The name of the package as it should be installed
PKGNAME = pony.computer
# Specify operating system distribution here,
# make sure it does not cause syntax error when
# resolved.
DISTRO =
# Build rules
.PHONY: default
default: pony.computer info
.PHONY: all
all: pony.computer doc
.PHONY: doc
doc: info pdf dvi ps
.PHONY: info
info: pony.computer.info
%.info: info/%.texinfo info/fdl.texinfo
makeinfo "$<"
.PHONY: pdf
pdf: pony.computer.pdf
%.pdf: info/%.texinfo info/fdl.texinfo
@mkdir -p obj/pdf
cd obj/pdf && yes X | texi2pdf "../../$<"
mv "obj/pdf/$@" "$@"
.PHONY: dvi
dvi: pony.computer.dvi
%.dvi: info/%.texinfo info/fdl.texinfo
@mkdir -p obj/dvi
cd obj/dvi && yes X | $(TEXI2DVI) "../../$<"
mv "obj/dvi/$@" "$@"
.PHONY: ps
ps: pony.computer.ps
%.ps: info/%.texinfo info/fdl.texinfo
@mkdir -p obj/ps
cd obj/ps && yes X | texi2pdf --ps "../../$<"
mv "obj/ps/$@" "$@"
pony.computer: pony.computer.py
cp "$<" "$@"
sed -i 's:#!/usr/bin/env python3:#!$(SHEBANG):' "$@"
sed -i "s#^distro = ''"'$$'"#distro = '$(DISTRO)'#" "$@"
# Install rules
.PHONY: install
install: install-base install-info install-examples
.PHONY: install-all
install-all: install-base install-doc
.PHONY: install-base
install-base: install-command install-license
.PHONY: install-command
install-command: pony.computer
install -dm755 -- "$(DESTDIR)$(BINDIR)"
install -m755 "$<" -- "$(DESTDIR)$(BINDIR)/$(COMMAND)"
.PHONY: install-license
install-license:
install -dm755 -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)"
install -m644 COPYING LICENSE -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)"
.PHONY: install-doc
install-doc: install-info install-pdf install-ps install-dvi install-examples
.PHONY: install-info
install-info: pony.computer.info
install -dm755 -- "$(DESTDIR)$(INFODIR)"
install -m644 "$<" -- "$(DESTDIR)$(INFODIR)/$(PKGNAME).info"
.PHONY: install-pdf
install-pdf: pony.computer.pdf
install -dm755 -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME)"
install -m644 "$<" -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME)/$(PKGNAME).pdf"
.PHONY: install-ps
install-ps: pony.computer.ps
install -dm755 -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME)"
install -m644 "$<" -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME)/$(PKGNAME).ps"
.PHONY: install-dvi
install-dvi: pony.computer.dvi
install -dm755 -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME)"
install -m644 "$<" -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME)/$(PKGNAME).dvi"
.PHONY: install-examples
install-examples:
install -dm755 -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME)"
install -m644 "example" -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME)/example"
# Uninstall rules
uninstall:
-rm -- "$(DESTDIR)$(BINDIR)/$(COMMAND)"
-rm -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)/COPYING"
-rm -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)/LICENSE"
-rmdir -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)"
-rm -- "$(DESTDIR)$(INFODIR)/$(PKGNAME).info"
-rm -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME)/$(PKGNAME).pdf"
-rm -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME)/$(PKGNAME).ps"
-rm -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME)/$(PKGNAME).dvi"
-rm -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME)/example"
-rmdir -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME)"
# Clean rules
.PHONY: clean
clean:
-rm -rf pony.computer pony.computer.{info,pdf,ps,dvi} obj