forked from pasdoc/pasdoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
548 lines (467 loc) · 18 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
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
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
include Makefile-autodetect
#######################################################################
# BASE CONFIGURATION
#######################################################################
# The version of the package.
# This must be changed on each version change,
# as documented at https://github.com/pasdoc/pasdoc/wiki/ReleaseMaking .
VERSION := 0.16.0
# The name of the package / file name
PACKAGENAME := pasdoc
# Location of units source code.
UNIT_DIRS := ./source/component ./source/console \
./source/component/tipue
INCLUDE_DIRS := ./source/component ./source/component/images
# Base file to compile
FILE := ./source/console/pasdoc.dpr
# Base directory where binaries will go
ifndef BINDIR
BINDIR := bin
endif
# Base directory where libs, units, objects files will go
ifndef OUTDIR
OUTDIR := lib
endif
# The following is for creating the final package, comment out
# if that particular section is not used.
# BINFILES: Files that will go into the resulting bin directory
# DOCFILES: Files that will go into the resulting docs directory
BINFILES := $(BINDIR)/pasdoc$(EXE) \
$(BINDIR)/pascal_pre_proc$(EXE) \
$(BINDIR)/file_to_pascal_string$(EXE) \
$(BINDIR)/file_to_pascal_data$(EXE)
DOCFILES := LICENSE ChangeLog.md README.md
PACKAGE_BASENAME := $(PACKAGENAME)-$(VERSION)-$(PACKAGE_BASENAME_SUFFIX)
############################################################################
# Variables below are *not* configurable, i.e. don't change them (unless
# you know what you're doing and you're able to accordingly change
# some rules later in this Makefile, that may depend on given variable's
# value).
############################################################################
PACKAGEDIR := $(PACKAGEBASEDIR)$(PATHSEP)$(PACKAGENAME)
############################################################################
# Change the paths to the correct types
#######################################################################
ifdef OUTDIR
OUTDIR := $(subst /,$(PATHSEP),$(OUTDIR))
endif
ifdef BINDIR
BINDIR := $(subst /,$(PATHSEP),$(BINDIR))
endif
FILE := $(subst /,$(PATHSEP),$(FILE))
UNIT_DIRS := $(subst /,$(PATHSEP),$(UNIT_DIRS))
INCLUDE_DIRS := $(subst /,$(PATHSEP),$(INCLUDE_DIRS))
ifdef BINFILES
BINFILES := $(subst /,$(PATHSEP),$(BINFILES))
endif
ifdef DOCFILES
DOCFILES := $(subst /,$(PATHSEP),$(DOCFILES))
endif
############################################################################
# FreePascal Configuration
############################################################################
# FPC_DEFAULT means "use current os and processor",
# calling just fpc binary on the path
FPC_DEFAULT := fpc
FPC_WIN32 := $(FPC_DEFAULT) -Pi386 -Twin32
FPC_WIN64 := $(FPC_DEFAULT) -Px86_64 -Twin64
FPC_GO32 := $(FPC_DEFAULT) -Pi386 -Tgo32v2
FPC_LINUX_X86 := $(FPC_DEFAULT) -Pi386 -Tlinux
FPC_LINUX_X86_64 := $(FPC_DEFAULT) -Px86_64 -Tlinux
FPC_LINUX_ARM := $(FPC_DEFAULT) -Parm -Tlinux
FPC_LINUX_M68K := $(FPC_DEFAULT) -Pm68k -Tlinux
FPC_LINUX_PPC := $(FPC_DEFAULT) -Ppowerpc -Tlinux
FPC_AMIGA := $(FPC_DEFAULT) -Pppc -Tamiga
FPC_BEOS := $(FPC_DEFAULT) -Pi386 -Tbeos
FPC_OS2 := $(FPC_DEFAULT) -Pi386 -Tos2
FPC_FREEBSD_X86 := $(FPC_DEFAULT) -Pi386 -Tfreebsd
FPC_DARWIN_X86 := $(FPC_DEFAULT) -Pi386 -Tdarwin
FPC_DARWIN_X86_64:= $(FPC_DEFAULT) -Px86_64 -Tdarwin
FPC_UNIT_DIRS := $(foreach units,$(UNIT_DIRS),-Fu$(units))
FPC_INCLUDE_DIRS := $(foreach units,$(INCLUDE_DIRS),-Fi$(units))
FPC_COMMON_FLAGS := -FE$(BINDIR) -FU$(OUTDIR) @pasdoc-fpc.cfg \
$(FPC_UNIT_DIRS) $(FPC_INCLUDE_DIRS)
FPC_DEBUG_FLAGS := $(FPC_COMMON_FLAGS)
ifdef CHECK_MEM_LEAK
FPC_DEBUG_FLAGS := -dCHECK_MEM_LEAK $(FPC_DEBUG_FLAGS)
endif
FPC_RELEASE_FLAGS := -dRELEASE $(FPC_COMMON_FLAGS)
############################################################################
# Delphi configuration
############################################################################
# Don't ask me why, but Borland named Delphi/Win32 command-line compiler
# dcc32 and Delphi/Linux (aka Kylix) as dcc (without 32).
DCC_WIN32 := dcc32
DCC_LINUX := dcc
DCC_UNIT_DIRS := $(foreach units,$(UNIT_DIRS),-U$(units))
DCC_INCLUDE_DIRS := $(foreach units,$(INCLUDE_DIRS),-I$(units))
# Command-line dcc prints non-errorlines while it works,
# I guess that it was meant to somehow indicate
# compilation progress, although it's rather confusing and hides
# meaningfull error/warning lines. That's why we pass -Q below.
DCC_COMMON_FLAGS := -E$(BINDIR) -N$(OUTDIR) -L$(OUTDIR) -M -H -W -Q \
-DCPU86 -DENDIAN_LITTLE $(DCC_UNIT_DIRS) $(DCC_INCLUDE_DIRS)
DCC_DEBUG_FLAGS := -$$Q+ -$$R+ $(DCC_COMMON_FLAGS)
DCC_RELEASE_FLAGS := -$$O+ $(DCC_COMMON_FLAGS)
############################################################################
# Building (and cleaning after building)
############################################################################
# Default target
.PHONY: default
default: build-fpc-default-debug
# Clean up the output files.
.PHONY: clean
clean:
rm -Rf source/console/pasdoc.compiled \
source/packages/lazarus/lib/ \
source/gui/pasdoc_gui.compiled \
source/gui/pasdoc_gui \
source/gui/pasdoc_gui.exe \
source/gui/pasdoc_gui.app \
source/gui/*.o \
source/gui/*.or \
source/gui/*.ppu \
source/gui/*.res
$(MAKE) clean -C tests/
$(MAKE) clean -C source/autodoc/
ifdef OUTDIR
rm -Rf $(OUTDIR)
mkdir $(OUTDIR)
touch $(OUTDIR)/.gitkeep
endif
ifdef BINDIR
rm -Rf $(BINDIR)
endif
# Make sure that $(BINDIR) and $(OUTDIR) exist, create them if necessary.
# This is executed before executing any `build-xxx' target,
# to make sure that compilation works "out of the box".
#
# Always using special directories for $(BINDIR) and $(OUTDIR) is handy
# -- reduces clutter, allows us to easily write `clean' target.
#
# Note that, unless you override $(BINDIR) and $(OUTDIR) at command-line,
# they don't really help you when you have various compilers, for
# various os/arch etc. because $(BINDIR) and $(OUTDIR) are always the same
# anyway, so all compilers reuse the same dirs... In the future various
# build-<compiler>-<os/arch> targets may be tweaked to use different
# $(BINDIR) and $(OUTDIR).
.PHONY: make-dirs
make-dirs:
ifdef OUTDIR
$(MKDIRPROG) -p $(OUTDIR)
endif
ifdef BINDIR
$(MKDIRPROG) -p $(BINDIR)
endif
# fpc- build targets
.PHONY: build-fpc-default-debug
build-fpc-default-debug: make-dirs
$(FPC_DEFAULT) $(FPC_DEBUG_FLAGS) $(FILE)
.PHONY: build-fpc-default
build-fpc-default: make-dirs
$(FPC_DEFAULT) $(FPC_RELEASE_FLAGS) $(FILE)
.PHONY: build-fpc-win32
build-fpc-win32: make-dirs
$(FPC_WIN32) $(FPC_RELEASE_FLAGS) $(FILE)
.PHONY: build-fpc-win64
build-fpc-win64: make-dirs
$(FPC_WIN64) $(FPC_RELEASE_FLAGS) $(FILE)
.PHONY: build-fpc-go32
build-fpc-go32: make-dirs
$(FPC_GO32) $(FPC_RELEASE_FLAGS) $(FILE)
.PHONY: build-fpc-linux-x86
build-fpc-linux-x86: make-dirs
$(FPC_LINUX_X86) $(FPC_RELEASE_FLAGS) $(FILE)
.PHONY: build-fpc-linux-x86_64
build-fpc-linux-x86_64: make-dirs
$(FPC_LINUX_X86_64) $(FPC_RELEASE_FLAGS) $(FILE)
.PHONY: build-fpc-linux-arm
build-fpc-linux-arm: make-dirs
$(FPC_LINUX_ARM) $(FPC_RELEASE_FLAGS) $(FILE)
.PHONY: build-fpc-linux-m68k
build-fpc-linux-m68k: make-dirs
$(FPC_LINUX_M68K) $(FPC_RELEASE_FLAGS) $(FILE)
.PHONY: build-fpc-amiga
build-fpc-amiga: make-dirs
$(FPC_AMIGA) $(FPC_RELEASE_FLAGS) $(FILE)
.PHONY: build-fpc-beos
build-fpc-beos: make-dirs
$(FPC_BEOS) $(FPC_RELEASE_FLAGS) $(FILE)
.PHONY: build-fpc-os2
build-fpc-os2: make-dirs
$(FPC_OS2) $(FPC_RELEASE_FLAGS) $(FILE)
.PHONY: build-fpc-linux-ppc
build-fpc-linux-ppc: make-dirs
$(FPC_LINUX_PPC) $(FPC_RELEASE_FLAGS) $(FILE)
.PHONY: build-fpc-freebsd-x86
build-fpc-freebsd-x86: make-dirs
$(FPC_FREEBSD_X86) $(FPC_RELEASE_FLAGS) $(FILE)
.PHONY: build-fpc-darwin-x86
build-fpc-darwin-x86: make-dirs
$(FPC_DARWIN_X86) $(FPC_RELEASE_FLAGS) $(FILE)
.PHONY: build-fpc-darwin-x86_64
build-fpc-darwin-x86_64: make-dirs
$(FPC_DARWIN_X86_64) $(FPC_RELEASE_FLAGS) $(FILE)
# Delphi/Kylix build targets
# Implementation note: this $(subst...) is needed, otherwise under Windows
# dcc dumbly prints "file not found" when $(FILE) uses "/" (yes, "/" is allowed
# path separator in all normal Windows programs...) (and $(FILE) uses
# "/" because this is sensible default value for $(PATHSEP), otherwise we would
# have to do dirty checks to guess whether we're used under Unix or Win32 in
# this Makefile).
.PHONY: build-delphi-win32
build-delphi-win32: make-dirs
$(DCC_WIN32) $(DCC_RELEASE_FLAGS) $(subst $(PATHSEP),\\,$(FILE))
.PHONY: build-delphi-linux-x86
build-delphi-linux-x86: make-dirs
$(DCC_LINUX) $(DCC_RELEASE_FLAGS) $(FILE)
# obsolete target
.PHONY: build-pascal_pre_proc
build-pascal_pre_proc: make-dirs
$(FPC_DEFAULT) $(FPC_DEBUG_FLAGS) ./source/tools/pascal_pre_proc.dpr
.PHONY: build-tools
build-tools: make-dirs
$(FPC_DEFAULT) $(FPC_DEBUG_FLAGS) ./source/tools/pascal_pre_proc.dpr
$(FPC_DEFAULT) $(FPC_DEBUG_FLAGS) ./source/tools/file_to_pascal_data.dpr
$(FPC_DEFAULT) $(FPC_DEBUG_FLAGS) ./source/tools/file_to_pascal_string.dpr
.PHONY: build-gui
build-gui:
if ! lazbuild $(LAZBUILD_OPTIONS) source/packages/lazarus/pasdoc_package.lpk; then \
echo 'lazbuild sometimes fails with Access Violation, retrying' && \
rm -Rf source/packages/lazarus/lib/ && \
lazbuild $(LAZBUILD_OPTIONS) source/packages/lazarus/pasdoc_package.lpk; \
fi
if ! lazbuild $(LAZBUILD_OPTIONS) source/gui/pasdoc_gui.lpi; then \
echo 'lazbuild sometimes fails with Access Violation, retrying' && \
rm -Rf source/gui/lib/ && \
lazbuild $(LAZBUILD_OPTIONS) source/gui/pasdoc_gui.lpi; \
fi
strip source/gui/pasdoc_gui$(EXE)
.PHONY: tests-fpcunit
tests-fpcunit: make-dirs
$(FPC_DEFAULT) $(FPC_DEBUG_FLAGS) ./tests/fpcunit/test_pasdoc.lpr
bin/test_pasdoc -a
.PHONY: tests
tests:
cd tests/ && ./run_all_tests.sh
############################################################################
# Help targets
############################################################################
.PHONY: help
help:
@echo "Available targets of this Makefile:"
@echo
@echo "Compiling:"
@echo
@echo " default, build-fpc-default-debug:"
@echo " Compile debug version with FPC. This is the default target."
@echo
@echo " build-fpc-default:"
@echo " Compile release version with FPC."
@echo
@echo " build-<compiler>-<os/arch>:"
@echo " Compile release version with given compiler for given OS"
@echo " and architecture. Available values for <compiler> are:"
@echo " fpc"
@echo " delphi"
@echo " Available values for <os/arch> are:"
@echo " win32"
@echo " win64"
@echo " go32"
@echo " linux-x86"
@echo " linux-x86_64"
@echo " linux-m68k"
@echo " linux-arm"
@echo " amiga"
@echo " beos"
@echo " os2"
@echo " linux-ppc"
@echo " freebsd-x86"
@echo " darwin-x86"
@echo " darwin-x86_64"
@echo " Of course, not all combinations of <compiler> and <os/arch>"
@echo " are available..."
@echo
@echo " Note that in case of FPC, these targets assume that variable"
@echo " FPC_<os/arch> points to a compiler that produces"
@echo " a binary for given <os/arch>. So if you want to cross-compile"
@echo " with FPC, make sure to adjust these variables accordingly."
@echo
@echo " build-gui:"
@echo " Compile pasdoc_gui with lazbuild (Lazarus build tool)."
@echo
@echo " clean:"
@echo " Clean files produced during compilation."
@echo
@echo "Archiving a release:"
@echo
@echo " dist-<os/arch>:"
@echo " This calls \"clean\", then \"build-<compiler>-<os/arch>\""
@echo " (using the preferred <compiler> for making a release on"
@echo " this <os/arch> -- currently, always FPC)"
@echo " and then makes a release archive for given <os/arch>."
@echo
@echo " dist-src:"
@echo " This creates source archive for the current sources."
.PHONY: version
version:
@echo $(VERSION)
.PHONY: tag
tag:
git log --pretty=oneline HEAD^..HEAD
git tag -a v$(VERSION) -m "Tagging the $(VERSION) version of PasDoc."
git push origin --tags
############################################################################
# Targets to make release archives
#
# Some general targets are present here, and targets
# that build and archive for particular platform.
# Note that each dist-<os/arch> target assumes that according build-fpc-<os/arch>
# target produces a pasdoc binary that works under <os/arch> platform.
# So if you want to cross-compile to create release archives,
# make sure that variables FPC_<os/arch> are properly set.
#
# Note that dist targets use the most common archive format for given platform.
# E.g. for Unices this is tar.gz, for Win32/DOS this is zip.
# There would be no problems with creating zip archives under Unices
# (or tar.gz under Win32/DOS), but it's just more common
# to use tar.gz under Unices.
############################################################################
# This target creates and fills directory $(PACKAGEDIR)
# (it's *always* the subdirectory $(PACKAGENAME) inside $(PACKAGEBASEDIR)).
# Use this to prepare file tree before archiving --- the only remaining
# thing after executing this target is to archive $(PACKAGEDIR).
.PHONY: dist-prepare
dist-prepare:
rm -rf $(PACKAGEDIR)
$(MKDIRPROG) -p $(PACKAGEDIR)
$(MAKE) build-tools
ifdef BINFILES
$(MKDIRPROG) $(PACKAGEDIR)$(PATHSEP)bin
cp $(BINFILES) $(PACKAGEDIR)$(PATHSEP)bin$(PATHSEP)
endif
ifdef DOCFILES
$(MKDIRPROG) $(PACKAGEDIR)$(PATHSEP)docs
cp -R $(DOCFILES) $(PACKAGEDIR)$(PATHSEP)docs
endif
ifdef ADD_PASDOC_GUI
$(MAKE) build-gui
ifdef PASDOC_GUI_BUNDLE
rm -Rf source/gui/pasdoc_gui.app/
cd source/gui/ && macos/create_bundle.sh $(VERSION)
cp -R source/gui/pasdoc_gui.app $(PACKAGEDIR)$(PATHSEP)bin$(PATHSEP)
else
cp source/gui/pasdoc_gui$(EXE) $(PACKAGEDIR)$(PATHSEP)bin$(PATHSEP)
endif
endif
# This target archives distribution into a zip file.
#
# Implementation notes: note that zip will add files to existing zip archive,
# if it already exists, so for safety below I'm first `rm -f ...' zip archive,
# then creating it.
.PHONY: dist-zip
dist-zip: dist-prepare
rm -f $(PACKAGEBASEDIR)$(PATHSEP)$(PACKAGE_BASENAME).zip
cd $(PACKAGEBASEDIR) && zip -r $(PACKAGE_BASENAME).zip $(PACKAGENAME)/*
mv $(PACKAGEBASEDIR)$(PATHSEP)$(PACKAGE_BASENAME).zip .
# This target archives distribution into a tar.gz file.
.PHONY: dist-tar-gz
dist-tar-gz: dist-prepare
cd $(PACKAGEBASEDIR) && tar czvf $(PACKAGE_BASENAME).tar.gz $(PACKAGENAME)/
mv $(PACKAGEBASEDIR)$(PATHSEP)$(PACKAGE_BASENAME).tar.gz .
.PHONY: dist-go32
dist-go32: clean build-fpc-go32
$(MAKE) --no-print-directory \
dist-zip EXE=.exe PACKAGE_BASENAME_SUFFIX=go32 \
FPC_DEFAULT='$(FPC_GO32)'
.PHONY: dist-win32
dist-win32: clean build-fpc-win32
$(MAKE) --no-print-directory \
dist-zip EXE=.exe PACKAGE_BASENAME_SUFFIX=win32 \
FPC_DEFAULT='$(FPC_WIN32)' \
ADD_PASDOC_GUI=t LAZBUILD_OPTIONS='--operating-system=win32 --cpu=i386'
.PHONY: dist-win64
dist-win64: clean build-fpc-win64
$(MAKE) --no-print-directory \
dist-zip EXE=.exe PACKAGE_BASENAME_SUFFIX=win64 \
FPC_DEFAULT='$(FPC_WIN64)' \
ADD_PASDOC_GUI=t LAZBUILD_OPTIONS='--operating-system=win64 --cpu=x86_64'
.PHONY: dist-os2
dist-os2: clean build-fpc-os2
$(MAKE) --no-print-directory \
dist-zip EXE=.exe PACKAGE_BASENAME_SUFFIX=os2 \
FPC_DEFAULT='$(FPC_OS2)'
.PHONY: dist-beos
dist-beos: clean build-fpc-beos
$(MAKE) --no-print-directory \
dist-zip PACKAGE_BASENAME_SUFFIX=be-x86 \
FPC_DEFAULT='$(FPC_BEOS)'
.PHONY: dist-linux-m68k
dist-linux-m68k: clean build-fpc-linux-m68k
$(MAKE) --no-print-directory \
dist-tar-gz PACKAGE_BASENAME_SUFFIX=linux-m68k \
FPC_DEFAULT='$(FPC_LINUX_M68K)'
.PHONY: dist-linux-x86
dist-linux-x86: clean build-fpc-linux-x86
$(MAKE) --no-print-directory \
dist-tar-gz PACKAGE_BASENAME_SUFFIX=linux-x86 \
FPC_DEFAULT='$(FPC_LINUX_X86)' \
ADD_PASDOC_GUI=t LAZBUILD_OPTIONS='--operating-system=linux --cpu=i386'
.PHONY: dist-linux-x86_64
dist-linux-x86_64: clean build-fpc-linux-x86_64
$(MAKE) --no-print-directory \
dist-tar-gz PACKAGE_BASENAME_SUFFIX=linux-x86_64 \
FPC_DEFAULT='$(FPC_LINUX_X86_64)' \
ADD_PASDOC_GUI=t LAZBUILD_OPTIONS='--operating-system=linux --cpu=x86_64'
.PHONY: dist-linux-arm
dist-linux-arm: clean build-fpc-linux-arm
$(MAKE) --no-print-directory \
dist-tar-gz PACKAGE_BASENAME_SUFFIX=linux-arm \
FPC_DEFAULT='$(FPC_LINUX_ARM)' \
ADD_PASDOC_GUI=t LAZBUILD_OPTIONS='--operating-system=linux --cpu=arm'
.PHONY: dist-amiga
dist-amiga: clean build-fpc-amiga
$(MAKE) --no-print-directory \
dist-zip PACKAGE_BASENAME_SUFFIX=amiga-m68k \
FPC_DEFAULT='$(FPC_AMIGA_M68K)'
.PHONY: dist-linux-ppc
dist-linux-ppc: clean build-fpc-linux-ppc
$(MAKE) --no-print-directory \
dist-tar-gz PACKAGE_BASENAME_SUFFIX=linux-ppc \
FPC_DEFAULT='$(FPC_LINUX_PPC)'
.PHONY: dist-freebsd-x86
dist-freebsd-x86: clean build-fpc-freebsd-x86
$(MAKE) --no-print-directory \
dist-tar-gz PACKAGE_BASENAME_SUFFIX=freebsd-x86 \
FPC_DEFAULT='$(FPC_FREEBSD_X86)'
.PHONY: dist-darwin-x86
dist-darwin-x86: clean build-fpc-darwin-x86
$(MAKE) --no-print-directory \
dist-zip PACKAGE_BASENAME_SUFFIX=darwin-x86 \
FPC_DEFAULT='$(FPC_DARWIN_X86)' \
ADD_PASDOC_GUI=t PASDOC_GUI_BUNDLE=t LAZBUILD_OPTIONS='--operating-system=darwin --cpu=i386'
.PHONY: dist-darwin-x86_64
dist-darwin-x86_64: clean build-fpc-darwin-x86_64
$(MAKE) --no-print-directory \
dist-zip PACKAGE_BASENAME_SUFFIX=darwin-x86_64 \
FPC_DEFAULT='$(FPC_DARWIN_X86_64)' \
ADD_PASDOC_GUI=t PASDOC_GUI_BUNDLE=t LAZBUILD_OPTIONS='--operating-system=darwin --cpu=x86_64 --widgetset=cocoa'
SOURCE_PACKAGE_BASENAME := $(PACKAGENAME)-$(VERSION)-src
.PHONY: dist-src
dist-src:
rm -Rf /tmp/pasdoc-src-temp
mkdir -p /tmp/pasdoc-src-temp
cp -R . /tmp/pasdoc-src-temp/pasdoc
$(MAKE) clean -C /tmp/pasdoc-src-temp/pasdoc
# Exclude .cge-jenkins-lazarus and .cache that may happen because Jenkins
# runs this with Docker container with $HOME set to pasdoc dir.
cd /tmp/pasdoc-src-temp/ && \
zip -r $(SOURCE_PACKAGE_BASENAME).zip \
--exclude='*/.git/*' \
--exclude='*/.cge-jenkins-lazarus/*' \
--exclude='*/.cache/*' \
--exclude='*.tar.gz' \
--exclude='*.zip' \
--exclude='*~' \
pasdoc
mv /tmp/pasdoc-src-temp/$(SOURCE_PACKAGE_BASENAME).zip .