-
Notifications
You must be signed in to change notification settings - Fork 154
/
Makefile.in
230 lines (184 loc) · 4.67 KB
/
Makefile.in
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
# Makefile
EMSCRIPTEN = @EMSCRIPTEN@
prefix = @prefix@
exec_prefix = @exec_prefix@
bindir = @bindir@
etcdir = @sysconfdir@
incdir = @includedir@
libdir = @libdir@
mandir = @mandir@
datarootdir = @datarootdir@
datadir = @datadir@
srcdir := @srcdir@
VPATH = $(srcdir)
ifeq "$(V)" "1"
QP = @\#
QR =
else
QP = @
QR = @
endif
ifneq "$(EMSCRIPTEN)" "yes"
ARFLAGS = -rc
else
ARFLAGS = rc
endif
all: all2
AR := @AR@
RANLIB := @RANLIB@
BIN :=
BINS :=
ETC :=
MAN1 :=
MAN2 :=
MAN3 :=
SHARE :=
CLN :=
DCL :=
DIRS :=
TARGETS :=
DIST :=
include Makefile.inc
MANA := $(MAN1) $(MAN2) $(MAN3)
MANT := $(foreach f,$(MANA),$(f).txt $(f).ps)
CLN += $(MANT)
all2: subdirs $(TARGETS)
subdirs:
ifneq "$(DIRS)" ""
$(QR)for f in $(DIRS) ; do \
if test -d "$$f" ; then continue ; fi ; \
if test x$(V) != x1 ; then echo " MKDIR $$f" ; fi ; \
mkdir -p "$$f" ; \
done
endif
clean:
ifneq "$(CLN)" ""
$(QR)for f in $(CLN) ; do \
if test x$(V) != x1 ; then echo " RM $$f" ; fi ; \
rm -f "$$f" ; \
done
endif
distclean: clean
ifneq "$(DCL)" ""
$(QR)for f in $(DCL) ; do \
if test x$(V) != x1 ; then echo " RM $$f" ; fi ; \
rm -f "$$f" ; \
done
endif
man: $(MANT)
install: install-bin install-bins install-etc install-man install-share install-extra
install-bin:
ifneq "$(BIN)" ""
$(QP)echo " MKDIR $(bindir)"
$(QR)$(INSTALL) -d -m 755 $(DESTDIR)$(bindir)
$(QR)for f in $(BIN) ; do \
dst=$(DESTDIR)$(bindir)/`basename "$$f"` ; \
if test x$(V) != x1 ; then echo " CP $$dst" ; fi ; \
$(INSTALL) -m 755 "$$f" "$$dst" ; \
done
endif
install-bins:
ifneq "$(BINS)" ""
$(QP)echo " MKDIR $(bindir)"
$(QR)$(INSTALL) -d -m 755 $(DESTDIR)$(bindir)
$(QR)for f in $(BINS) ; do \
dst=$(DESTDIR)$(bindir)/`basename "$$f"` ; \
if test x$(V) != x1 ; then echo " CP $$dst" ; fi ; \
$(INSTALL) -m 755 "$$f" "$$dst" ; \
done
endif
install-etc:
ifneq "$(ETC)" ""
$(QP)echo " MKDIR $(DESTDIR)$(etcdir)"
$(QR)$(INSTALL) -d -m 755 $(DESTDIR)$(etcdir)
$(QR)for f in $(ETC) ; do \
dst=$(DESTDIR)$(etcdir)/`basename "$$f"` ; \
if test x$(V) != x1 ; then echo " CP $$dst" ; fi ; \
$(INSTALL) -m 644 "$$f" "$$dst" ; \
done
endif
install-man:
ifneq "$(MAN1)" ""
$(QP)echo " MKDIR $(mandir)/man1"
$(QR)$(INSTALL) -d -m 755 $(DESTDIR)$(mandir)/man1
$(QR)for f in $(MAN1) ; do \
dst=$(DESTDIR)$(mandir)/man1/`basename "$$f"` ; \
if test x$(V) != x1 ; then echo " CP $$dst" ; fi ; \
$(INSTALL) -m 644 "$(srcdir)/$$f" "$$dst" ; \
done
endif
install-share:
ifneq "$(SHARE)" ""
$(QP)echo " MKDIR $(DESTDIR)$(datadir)"
$(QR)$(INSTALL) -d -m 755 $(DESTDIR)$(datadir)
$(QR)for f in $(SHARE) ; do \
dst=$(DESTDIR)$(datadir)/`basename "$$f"` ; \
if test x$(V) != x1 ; then echo " CP $$dst" ; fi ; \
$(INSTALL) -m 644 "$$f" "$$dst" ; \
done
endif
install-extra:
dist: dist-dist dist-contrib dist-extra dist-version
$(QP)echo " TAR $(distdir).tar"
$(QR)( cd "$(distdir)"/.. && \
tar -cvf "$(distdir).tar" `basename "$(distdir)"` > /dev/null )
$(QP)echo " GZIP $(distdir).tar.gz"
$(QR)rm -f "$(distdir).tar.gz"
$(QR)gzip -9 "$(distdir).tar"
dist-dist:
ifneq "$(DIST)" ""
$(QP)echo " MKDIR $(distdir)"
$(QR)mkdir -p "$(distdir)"
$(QR)for f in $(DIST) ; do \
if test -f "$$f" ; then \
src=$$f ; \
elif test -f "$(srcdir)/$$f" ; then \
src=$(srcdir)/$$f ; \
else \
if test x$(V) != x1 ; then echo " SKIP $$f" ; fi ; \
continue ; \
fi ; \
if test x$(V) != x1 ; then echo " CP $$f" ; fi ; \
dir=$(distdir)/`dirname "$$f"` ; \
mkdir -p "$$dir" ; \
cp -p "$$src" "$$dir" ; \
done
endif
dist-contrib:
$(QR)if test -d "$(srcdir)/contrib" ; then \
( cd "$(srcdir)" && find contrib/ -type f -print ) |\
while read src ; do \
test -f "$(distdir)/$$src" && continue ; \
test x$(V) != x1 && echo " CP $$src" ; \
dir=`dirname "$(distdir)/$$src"` ; \
test -d "$$dir" || mkdir -p "$$dir" ; \
cp -p "$(srcdir)/$$src" "$$dir" ; \
done ; \
fi
dist-extra:
# ----------------------------------------------------------------------
%.o: %.c
$(QP)echo " CC $@"
$(QR)$(CC) -c $(CFLAGS_DEFAULT) -o $@ $<
%.o: %.cxx
$(QP)echo " CXX $@"
$(QR)$(CXX) -c $(CXXFLAGS_DEFAULT) -o $@ $<
%.o: %.cpp
$(QP)echo " CXX $@"
$(QR)$(CXX) -c $(CXXFLAGS_DEFAULT) -o $@ $<
%.a:
$(QP)echo " AR $@"
$(QR)rm -f $@
$(QP)echo "$(AR) $(ARFLAGS) $@ $^"
$(QR)$(AR) $(ARFLAGS) $@ $^
$(QP)echo " RANLIB $@"
$(QR)$(RANLIB) $@
%.1.ps: %.1
$(QP)echo " MAN $@"
$(QR)groff -Tps -mandoc < $< > $@
%.1.man: %.1
$(QP)echo " MAN $@"
$(QR)troff -Tlatin1 -mandoc < $< | grotty -c > $@
%.1.txt: %.1
$(QP)echo " MAN $@"
$(QR)troff -Tlatin1 -mandoc < $< | grotty -c -b -o -u > $@