-
Notifications
You must be signed in to change notification settings - Fork 28
/
Makefile.in
455 lines (364 loc) · 12.4 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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
# Top Level Makefile for Unicon
#
TOPDIR=.
default: default_target
include Makedefs
name=unspecified
# Make sure no custom PATHs are set so the build doesn't get affected
# by other installations of unicon on the same system if they do exist
IPATH=
LPATH=
# get the current unicon dir name
unicwd=`basename \`pwd\``
default_target: allsrc
$(MAKE) -C ipl/lib
$(MAKE) -C uni
$(MAKE) -C plugins
$(MAKE) docrule
$(MAKE) htmldocrule
@echo ============ Build Features ============ > unicon-features.log
bin/unicon -features >> unicon-features.log
@echo ======================================== >> unicon-features.log
@cat unicon-features.log
@echo "add $(unicwd)/bin to your path or do \"make install\" to install Unicon on your system"
.PHONY: plugins update_rev doc config help
Makedefs: Makedefs.in configure
sh configure
update_rev:
@./config/scripts/version.sh
#
# if you make any changes to configure.ac or aclocal.m4 run autoreconf -i
#
#configure: configure.ac aclocal.m4
# autoreconf -i
config: configure
sh configure
help:
@echo
@echo "Unicon Build Instructions:"
@echo
@echo " Run the following configure and make commands"
@echo
@echo " UNIX/macOS:"
@echo " ./configure"
@echo " make"
@echo
@echo " Windows:"
@echo " sh configure --build=x86_64-w64-mingw32"
@echo " make"
@echo
##################################################################
#
# Default targets.
All: Icont Ilib Ibin
allsrc: Makedefs update_rev
$(MAKE) -C src
##################################################################
# needed especially for MacOS
.PHONY: Configure
WUnicon32:
sh configure --host=i686-w64-mingw32
WUnicon64:
sh configure --build=x86_64-w64-mingw32
INNOSETUP="C:\Program Files (x86)\Inno Setup 6\ISCC.exe"
winbin WinInstaller:
@echo "#define PkgName \"$(PKG_TARNAME)\"" > config/win32/gcc/unicon_version.iss
@echo "#define AppVersion \"$(PKG_VERSION)\"" >> config/win32/gcc/unicon_version.iss
@echo "#define AppRevision \""`./config/scripts/version.sh "revision"`"\"" \
>> config/win32/gcc/unicon_version.iss
@echo "#define PATCHSTR \"$(PATCHSTR)\"" >> config/win32/gcc/unicon_version.iss
$(INNOSETUP) config/win32/gcc/unicon.iss
##################################################################
#
# This is used utilize the ncurses-based tool to build Unicon
# make build name=xxxx
build:
if test "$(TERM)" = "dumb" ; then \
echo "No building on dumb terminals, use make Configure"; \
elif [ -f /usr/lib/libcurses.so ] ; then \
gcc src/common/build.c -lcurses -o build; \
./build $(name) ; \
rm build; \
elif [ -f /usr/include/curses.h ] ; then \
gcc src/common/build.c -lncurses -o build; \
./build $(name) ; \
rm build; \
else \
make Configure name=$(name); \
echo "No curses library was found for 'build', used 'make Configure name=$(name)'"; \
echo "If you want X11 graphics, run 'make X-Configure name=$(name)'"; \
fi
##################################################################
# Get the status information for a specific system.
Status:
@cat unicon-config.log
##################################################################
#
# Compilation and installation.
# The OO translator. Add a line for uni/iyacc if you modify the Unicon grammar
Unicon: Icont
cd ipl/lib; $(MAKE)
cd uni ; $(MAKE)
# The interpreter: icont and iconx.
Icont bin/icont:
$(MAKE) -C src Icont
# The compiler: rtt, the run-time system, and iconc.
Iconc Uniconc bin/iconc:
$(MAKE) -C src Iconc
# Common components.
Common:
$(MAKE) -C src Common
# The Icon program library.
Ilib: bin/icont
$(MAKE) -C ipl
Ibin: bin/icont
$(MAKE) -C ipl Ibin
# Common components.
plugins:
$(MAKE) -C plugins
# Documentation
docrule: $(UDOC)
doc:
$(MAKE) -C doc
# build full html documentation using unidoc
UBASE=$(shell pwd)
SBASE=$(UBASE)/uni
TBASE=$(UBASE)/doc/uni-api
# SRCDIRS is a space-separated list, SDIRS and LDIRS are comma-separated lists
SRCDIRS="$(SBASE)/progs $(SBASE)/gprogs $(SBASE)/lib $(UBASE)/ipl/procs $(UBASE)/progs $(UBASE)/gprogs $(SBASE)/unidoc"
SDIRS="$(SBASE)/progs,$(SBASE)/gprogs,$(SBASE)/lib,$(UBASE)/ipl/procs,$(UBASE)/progs,$(UBASE)/gprogs,$(SBASE)/unidoc"
LDIRS="$(TBASE)/lib"
basetitle="Unicon API "
cdir=$(shell pwd)
TD=$(TBASE)
title=$(basetitle)
htmldocrule: $(HTMLDOC)
htmldoc:
@echo ""
@echo " Building class library html documentation"
@echo ""
# $(MAKE) -C uni/unidoc htmldoc
mkdir -p ${TD}
./bin/unidoc --title=$(title) --linkSrc --sourcePath="$(SDIRS)" --linkPath="$(LDIRS)" --resolve --targetDir=$(TD) "$(SRCDIRS)"
##################################################################
#
# Installation and packaging.
# Installation: "make Install dest=new-parent-directory"
ULROT=$(libdir)/unicon
RTDIR=$(ULROT)/rt
ULB=$(ULROT)/uni
UIPL=$(ULROT)/ipl
UPLUGINS=$(ULROT)/plugins/lib
INST=$(SHTOOL) install -c
F=*.{u,icn}
Tbins=unicon$(EXE) icont$(EXE) iconx$(EXE) iconc$(EXE) unicont$(EXE) uniconx$(EXE) \
uniconc$(EXE) udb$(EXE) uprof$(EXE) unidep$(EXE) unidoc$(EXE) ui$(EXE) ivib$(EXE) \
ulsp$(EXE) patchstr$(EXE) iyacc$(EXE) rt.a rt.h
Tdirs=$(DESTDIR)$(ULB) $(DESTDIR)$(UIPL) $(DESTDIR)$(UPLUGINS)
Udirs=lib 3d gui unidoc unidep xml parser ulsp
IPLdirs=lib incl gincl mincl procs
RTdirs=lib include include/uri
uninstall Uninstall:
# be conservative when deleting directories
@for d in $(DESTDIR)$(ULROT) $(DESTDIR)$(docdir) ; do \
echo "Uninstalling dir $$d ..."; \
rm -rf $$d; \
done
# delete the binaries we installed from unicon/bin
@for f in $(Tbins); do \
echo "Uninstalling $(DESTDIR)$(bindir)/$$f ..."; \
rm -f $(DESTDIR)$(bindir)/$$f; \
done
# docs and man
@echo "Uninstalling $(DESTDIR)$(mandir)/man1/unicon.1 ..."
@rm -f $(DESTDIR)$(mandir)/man1/unicon.1
install Install:
# create all directories first
@for d in $(DESTDIR)$(bindir) $(DESTDIR)$(libdir) $(DESTDIR)$(docdir) $(DESTDIR)$(mandir)/man1 $(Tdirs) ; do \
(echo "Creating dir $$d") && (mkdir -p $$d); \
done
@for d in $(RTdirs); do \
(echo "Creating dir $(DESTDIR)$(RTDIR)/$$d") && (mkdir -p $(DESTDIR)$(RTDIR)/$$d); \
done
@for d in $(IPLdirs); do \
(echo "Creating dir $(DESTDIR)$(UIPL)/$$d") && (mkdir -p $(DESTDIR)$(UIPL)/$$d); \
done
@for d in $(Udirs); do \
(echo "Creating dir $(DESTDIR)$(ULB)/$$d") && (mkdir -p $(DESTDIR)$(ULB)/$$d); \
done
# install unicon/bin
@for f in $(Tbins); do \
if test -f "bin/$$f"; then \
(echo "Installing bin/$$f") && ($(INST) bin/$$f $(DESTDIR)$(bindir)); \
if test "$$f" = $(UNICONT)$(EXE) ; then \
$(PATCHSTR) -DPatchStringHere $(DESTDIR)$(bindir)/$$f $(bindir)/$(UNICONX) || true; \
$(PATCHSTR) -DPatchUnirotHere $(DESTDIR)$(bindir)/$$f $(ULROT) || true; \
elif test "$$f" = $(UNICONWT)$(EXE) ; then \
$(PATCHSTR) -DPatchStringHere $(DESTDIR)$(bindir)/$$f $(bindir)/$(UNICONWX) || true; \
$(PATCHSTR) -DPatchUnirotHere $(DESTDIR)$(bindir)/$$f $(ULROT) || true; \
elif test "$$f" != $(PATCHSTRX) ; then \
$(PATCHSTR) -DPatchStringHere $(DESTDIR)$(bindir)/$$f $(bindir) || true; \
$(PATCHSTR) -DPatchUnirotHere $(DESTDIR)$(bindir)/$$f $(ULROT) || true; \
fi; \
fi; \
done
# install unicon/rt
@echo "Installing unicon/rt to $(DESTDIR)$(RTDIR) ..."
@$(INST) -m 644 rt/lib/* $(DESTDIR)$(RTDIR)/lib
@$(INST) -m 644 rt/include/*.h $(DESTDIR)$(RTDIR)/include
@$(INST) -m 644 rt/include/uri/*.h $(DESTDIR)$(RTDIR)/include/uri
# install unicon/ipl
@echo "Installing unicon/ipl to $(DESTDIR)$(UIPL) ..."
@$(INST) -m 644 ipl/lib/*.u $(DESTDIR)$(UIPL)/lib
@$(INST) -m 644 ipl/incl/*.icn $(DESTDIR)$(UIPL)/incl
@$(INST) -m 644 ipl/gincl/*.icn $(DESTDIR)$(UIPL)/gincl
@$(INST) -m 644 ipl/mincl/*.icn $(DESTDIR)$(UIPL)/mincl
@$(INST) -m 644 ipl/procs/*.icn $(DESTDIR)$(UIPL)/procs
# install unicon/uni
@for d in $(Udirs); do \
echo "Installing uni/$$d to $(DESTDIR)$(ULB)/$$d ..."; \
$(INST) -m 644 uni/$$d/*.* $(DESTDIR)$(ULB)/$$d; \
done
# plugins
@$(INST) -m 644 plugins/lib/*.* $(DESTDIR)$(UPLUGINS)/ || true
# docs and man
@echo "Installing $(DESTDIR)$(mandir)/man1/unicon.1 ..."
@$(INST) -m 644 doc/unicon/unicon.1 $(DESTDIR)$(mandir)/man1/
@$(INST) -m 644 README.md $(DESTDIR)$(docdir)
@echo "Installing $(DESTDIR)$(docdir) ..."
@$(INST) -m 644 doc/unicon/*.* $(DESTDIR)$(docdir)
# Bundle up for binary distribution.
PKGDIR=$(PKG_TARNAME).$(PKG_VERSION)
Package:
rm -rf $(PKGDIR)
umask 002; $(MAKE) Install dest=$(PKGDIR)
tar cf - $(PKG_TARNAME).$(PKG_VERSION) | gzip -9 >$(PKG_TARNAME).$(PKG_VERSION).tgz
rm -rf $(PKGDIR)
distclean2: clean
@for d in $(SUBDIRS); do \
if test "$$d" != "."; then \
(cd $$d && $(MAKE) $@); \
fi; \
done
$(RM) Makefile config.status config.cache config.log
#Makefile: Makefile.in config.status
# cd $(top_srcdir) && $(SHELL) ./config.status
#config.status: $(srcdir)/configure
# $(SHELL) ./config.status --recheck
#MV=.0
VSUFFIX?=~prerelease
VV=$(PKG_VERSION)$(MV)
PKG_STRNAME=$(PKG_TARNAME)_$(VV)$(VSUFFIX)
UTAR=$(PKG_STRNAME).tar.gz
UTARORIG=$(PKG_STRNAME).orig.tar.gz
dist: distclean update_rev
echo "Building $(UTAR)"
tar -czf ../$(UTAR) --exclude-vcs --exclude-backups ../$(unicwd)
publishdist: dist
scp ../$(UTAR) web.sf.net:/home/project-web/unicon/htdocs/download/
# Deb Section
udist=unicondist
SIGNKEYID=AB194DBF
SIGNOPT=-k$(SIGNKEYID)
deb: dist
mkdir -p ../$(udist)
mv ../$(UTAR) ../$(udist)/
cp ../$(udist)/$(UTAR) ../$(udist)/$(UTARORIG)
@echo unpacking ../$(udist)/$(UTAR)
cd ../$(udist) && tar -xf $(UTAR)
mv ../$(udist)/unicon ../$(udist)/$(PKG_STRNAME)
@echo "To finish building the deb package, do"
@echo " cd ../$(udist)/$(PKG_STRNAME)"
@echo "Then run:"
@echo " debuild -us -uc"
debin: deb
cd ../$(udist)/$(PKG_STRNAME) && debuild -us -uc $(SIGNOPT) --lintian-opts --profile debian
ls -lh ../$(udist)/unicon_*.deb
debsrc: deb
cd ../$(udist)/$(PKG_STRNAME) && debuild -S $(SIGNOPT) --lintian-opts --profile debian
ls -lh ../$(udist)/$(PKG_TARNAME)_*.dsc
debsign:
cd ../$(udist) && debsign $(PKG_STRNAME)*.changes $(SIGNOPT)
launchpad:
cd ../$(udist) && dput unicon-ppa $(PKG_STRNAME)*_source.changes
# RPM section
rpmdir=rpmbuild
rpm: dist
mkdir -p ../$(rpmdir)/SOURCES
mkdir -p ../$(rpmdir)/SPECS
cp rpm/unicon.spec ../$(rpmdir)/SPECS
mv ../$(UTAR) ../$(rpmdir)/SOURCES
@echo "To finish building the rpm package, do"
@echo " cd ../$(rpmdir)/SPECS"
@echo "Then run:"
@echo " rpmbuild -ba unicon.spec"
rpmbin: rpm
cd ../$(rpmdir)/SPECS && rpmbuild -ba unicon.spec
@ls ../$(rpmdir)/RPMS/
ls -lh ../$(rpmdir)/RPMS/$(PKG_STRNAME)-*.*.rpm
rpmresume: rpm
cd ../$(rpmdir) && rpmbuild -bi --short-circuit unicon.spec
@ls ../$(rpmdir)/RPMS/
ls -lh ../$(rpmdir)/RPMS/$(PKG_STRNAME)-$(VV)-*.*.rpm
rpmsrc:
cd ../$(rpmdir) && rpmbuild -bs unicon.spec
@ls ../$(rpmdir)/SRPMS/
ls -lh ../$(rpmdir)/RPMS/$(PKG_STRNAME)-*.*.rpm
##################################################################
#
# Tests.
Test Test-icont: ; cd tests; $(MAKE) Test
Samples Samples-icont: ; cd tests; $(MAKE) Samples
Test-iconc: ; cd tests; $(MAKE) Test-iconc
Samples-iconc: ; cd tests; $(MAKE) Samples-iconc
#################################################################
#
# Run benchmarks.
Benchmark:
$(MAKE) Benchmark-icont
Benchmark-iconc:
cd tests/bench; $(MAKE) benchmark-iconc
Benchmark-icont:
cd tests/bench; $(MAKE) benchmark-icont
##################################################################
#
# Clean-up.
#
# "make Clean" removes intermediate files, leaving executables and library.
# "make Pure" also removes binaries, library, and configured files.
clean Clean:
touch Makedefs Makedefs.uni
rm -rf icon.*
cd src; $(MAKE) Clean
cd tests; $(MAKE) Clean
cd plugins; $(MAKE) Clean
cd doc; $(MAKE) Clean
distclean:
touch Makedefs Makedefs.uni
rm -rf icon.* bin/[A-Za-z]* lib/[a-z]*
cd uni; $(MAKE) Pure
cd ipl; $(MAKE) Pure
cd src; $(MAKE) Pure
cd tests; $(MAKE) distclean
cd plugins; $(MAKE) Pure
cd doc; $(MAKE) Clean
rm -f src/common/rswitch.[csS]
$(RM) config.status config.cache
$(RM) config.log unicon-config.log
Pure:
touch Makedefs Makedefs.uni
rm -rf icon.* bin/[A-Za-z]* lib/[a-z]*
cd uni; $(MAKE) Pure
cd ipl; $(MAKE) Pure
cd src; $(MAKE) Pure
cd tests; $(MAKE) Pure
cd plugins; $(MAKE) Pure
cd doc; $(MAKE) Clean
rm -f src/common/rswitch.[csS]
# rm -f Makedefs Makedefs.uni
$(RM) config.status config.cache config.log
$(RM) config.log unicon-config.log
# rm -f \#*# *~ .#*
# rm -f */#*# */*~ */.#*
# rm -f */*/#*# */*/*~ */*/.#*
# rm -f */*/*/#*# */*/*/*~ */*/*/.#*