-
Notifications
You must be signed in to change notification settings - Fork 8
/
Makefile
691 lines (556 loc) · 24.3 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
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
#!/usr/bin/make -f
VERSION = $(shell cat VERSION)
# ---------------------------------------------------------------------------------------------------------------------
# Auto-detect build target
CC ?= gcc
TARGET_MACHINE := $(shell $(CC) -dumpmachine)
ifeq ($(PAWPAW_TARGET),macos-10.15)
MACOS = true
else ifeq ($(PAWPAW_TARGET),macos-universal-10.15)
MACOS = true
else ifeq ($(PAWPAW_TARGET),wasm)
WASM = true
else ifeq ($(PAWPAW_TARGET),win64)
WINDOWS = true
else
ifneq (,$(findstring linux,$(TARGET_MACHINE)))
LINUX = true
PAWPAW_TARGET = linux-$(shell uname -m)
else ifneq (,$(findstring apple,$(TARGET_MACHINE)))
MACOS = true
ifeq ($(shell uname -m),x86_64)
PAWPAW_TARGET = macos-10.15
else
PAWPAW_TARGET = macos-universal-10.15
endif
else ifneq (,$(findstring mingw,$(TARGET_MACHINE)))
WINDOWS = true
PAWPAW_TARGET = win64
else ifneq (,$(findstring wasm,$(TARGET_MACHINE)))
WASM = true
PAWPAW_TARGET = wasm
else
$(error unknown target, cannot continue)
endif
endif
# ---------------------------------------------------------------------------------------------------------------------
# Set binary file extensions as needed by JACK
ifeq ($(WINDOWS),true)
APP_EXT = .exe
SO_EXT = .dll
else
APP_EXT =
SO_EXT = .so
endif
# ---------------------------------------------------------------------------------------------------------------------
# utilities
# function to convert project name into buildroot var name
BUILDROOT_VAR = $(shell echo $(1) | tr a-z A-Z | tr - _)
# function to convert project name into stamp filename
PLUGIN_STAMP = build-plugin-stamps/$(1),$($(call BUILDROOT_VAR,$(1))_VERSION)
# makefile helpers
BLANK =
COMMA = ,
SPACE = $(BLANK) $(BLANK)
# ---------------------------------------------------------------------------------------------------------------------
# Set PawPaw environment, matching PawPaw/setup/env.sh
ifeq ($(PAWPAW_DEBUG),1)
PAWPAW_SUFFIX = -debug
endif
PAWPAW_DIR = $(HOME)/PawPawBuilds
PAWPAW_BUILDDIR = $(PAWPAW_DIR)/builds/$(PAWPAW_TARGET)$(PAWPAW_SUFFIX)
PAWPAW_PREFIX = $(PAWPAW_DIR)/targets/$(PAWPAW_TARGET)$(PAWPAW_SUFFIX)
# ---------------------------------------------------------------------------------------------------------------------
# List of files created by PawPaw bootstrap, to ensure we have run it at least once
ifeq ($(MACOS),true)
BOOTSTRAP_FILES = $(PAWPAW_PREFIX)/bin/cxfreeze
else
BOOTSTRAP_FILES = $(PAWPAW_PREFIX)/bin/cxfreeze-quickstart
endif
BOOTSTRAP_FILES += $(PAWPAW_PREFIX)/bin/jackd$(APP_EXT)
BOOTSTRAP_FILES += $(PAWPAW_PREFIX)/include/armadillo
BOOTSTRAP_FILES += $(PAWPAW_PREFIX)/lib/jack/jack_mod-desktop$(SO_EXT)
# ---------------------------------------------------------------------------------------------------------------------
# List of files for mod-desktop packaging, often symlinks to the real files
TARGETS = build-ui/lib/libmod_utils$(SO_EXT)
ifeq ($(MACOS),true)
TARGETS += build/mod-desktop.app/Contents/Info.plist
TARGETS += build/mod-desktop.app/Contents/Frameworks/QtCore.framework
TARGETS += build/mod-desktop.app/Contents/Frameworks/QtGui.framework
TARGETS += build/mod-desktop.app/Contents/Frameworks/QtOpenGL.framework
TARGETS += build/mod-desktop.app/Contents/Frameworks/QtPrintSupport.framework
TARGETS += build/mod-desktop.app/Contents/Frameworks/QtSvg.framework
TARGETS += build/mod-desktop.app/Contents/Frameworks/QtWidgets.framework
TARGETS += build/mod-desktop.app/Contents/LV2
TARGETS += build/mod-desktop.app/Contents/MacOS/jackd
TARGETS += build/mod-desktop.app/Contents/MacOS/jack/jack-session.conf
TARGETS += build/mod-desktop.app/Contents/MacOS/jack/jack_coreaudio.so
TARGETS += build/mod-desktop.app/Contents/MacOS/jack/jack_coremidi.so
TARGETS += build/mod-desktop.app/Contents/MacOS/jack/jack_dummy.so
TARGETS += build/mod-desktop.app/Contents/MacOS/jack/jack_mod-desktop.so
TARGETS += build/mod-desktop.app/Contents/MacOS/jack/mod-host.so
TARGETS += build/mod-desktop.app/Contents/MacOS/jack/mod-midi-broadcaster.so
TARGETS += build/mod-desktop.app/Contents/MacOS/jack/mod-midi-merger.so
TARGETS += build/mod-desktop.app/Contents/MacOS/libjack.0.dylib
TARGETS += build/mod-desktop.app/Contents/MacOS/libjackserver.0.dylib
TARGETS += build/mod-desktop.app/Contents/MacOS/lib/library.zip
TARGETS += build/mod-desktop.app/Contents/MacOS/mod-desktop
TARGETS += build/mod-desktop.app/Contents/MacOS/mod-pedalboard
TARGETS += build/mod-desktop.app/Contents/MacOS/mod-ui
TARGETS += build/mod-desktop.app/Contents/MacOS/mod
TARGETS += build/mod-desktop.app/Contents/MacOS/modtools
TARGETS += build/mod-desktop.app/Contents/PlugIns/generic/libqtuiotouchplugin.dylib
TARGETS += build/mod-desktop.app/Contents/PlugIns/iconengines/libqsvgicon.dylib
TARGETS += build/mod-desktop.app/Contents/PlugIns/imageformats/libqsvg.dylib
TARGETS += build/mod-desktop.app/Contents/PlugIns/platforms/libqcocoa.dylib
TARGETS += build/mod-desktop.app/Contents/PlugIns/styles/libqmacstyle.dylib
TARGETS += build/mod-desktop.app/Contents/Resources/default.pedalboard
TARGETS += build/mod-desktop.app/Contents/Resources/html
TARGETS += build/mod-desktop.app/Contents/Resources/mod-hardware-descriptor.json
TARGETS += build/mod-desktop.app/Contents/Resources/mod-logo.icns
TARGETS += build/mod-desktop.app/Contents/Resources/pedalboards
TARGETS += build/mod-desktop.app/Contents/Resources/VERSION
else
TARGETS += build/default.pedalboard
TARGETS += build/html
TARGETS += build/jackd$(APP_EXT)
TARGETS += build/jack/jack-session.conf
TARGETS += build/jack/mod-host$(SO_EXT)
TARGETS += build/jack/mod-midi-broadcaster$(SO_EXT)
TARGETS += build/jack/mod-midi-merger$(SO_EXT)
TARGETS += build/lib/library.zip
TARGETS += build/mod-desktop$(APP_EXT)
TARGETS += build/mod-pedalboard$(APP_EXT)
TARGETS += build/mod-ui$(APP_EXT)
TARGETS += build/mod
TARGETS += build/modtools
TARGETS += build/mod-hardware-descriptor.json
TARGETS += build/pedalboards
TARGETS += build/VERSION
ifeq ($(WINDOWS),true)
TARGETS += build/jack/jack_dummy.dll
TARGETS += build/jack/jack_mod-desktop.dll
TARGETS += build/jack/jack_portaudio.dll
TARGETS += build/jack/jack_winmme.dll
TARGETS += build/libjack64.dll
TARGETS += build/libjackserver64.dll
TARGETS += build/libpython3.8.dll
TARGETS += build/mod-desktop-asio.dll
TARGETS += build/Qt5Core.dll
TARGETS += build/Qt5Gui.dll
TARGETS += build/Qt5Svg.dll
TARGETS += build/Qt5Widgets.dll
TARGETS += build/generic/qtuiotouchplugin.dll
TARGETS += build/iconengines/qsvgicon.dll
TARGETS += build/imageformats/qsvg.dll
TARGETS += build/platforms/qwindows.dll
TARGETS += build/styles/qwindowsvistastyle.dll
else
TARGETS += build/jack/alsa_midi.so
TARGETS += build/jack/jack_alsa.so
TARGETS += build/jack/jack_dummy.so
TARGETS += build/jack/jack_mod-desktop.so
TARGETS += build/jack/jack_portaudio.so
TARGETS += build/jack/jack-session-alsamidi.conf
TARGETS += build/libjack.so.0
TARGETS += build/libjackserver.so.0
TARGETS += build-ui/libjack.so.0
endif
endif
# ---------------------------------------------------------------------------------------------------------------------
# Set up plugins to build and ship inside mod-desktop
# List of plugin projects to build
PLUGINS = abgate
PLUGINS += aidadsp-lv2
PLUGINS += artyfx
PLUGINS += bolliedelay
PLUGINS += caps-lv2
PLUGINS += carla-plugins
PLUGINS += chow-centaur
PLUGINS += collisiondrive
# FIXME crashes on close https://github.com/mod-audio/mod-desktop/actions/runs/11074280005/job/30778113748
# PLUGINS += dexed
PLUGINS += die-plugins
PLUGINS += dpf-plugins
PLUGINS += dragonfly-reverb
PLUGINS += fomp
# FIXME use of unsupported attributes on macOS https://github.com/mod-audio/mod-desktop/actions/runs/11073258401/job/30769392843
# PLUGINS += gxbajatubedriver
# FIXME use of unsupported attributes on macOS https://github.com/mod-audio/mod-desktop/actions/runs/11074280005/job/30778113413
# PLUGINS += gxknightfuzz
PLUGINS += gxquack
# FIXME use of unsupported attributes on macOS https://github.com/mod-audio/mod-desktop/actions/runs/11077433225/job/30782666413
# PLUGINS += gxslowgear
PLUGINS += gxswitchlesswah
PLUGINS += invada-lv2
PLUGINS += master_me
PLUGINS += mod-ams-lv2
PLUGINS += mod-arpeggiator
PLUGINS += mod-audio-mixers
PLUGINS += mod-convolution-loader
PLUGINS += mod-cv-plugins
PLUGINS += mod-distortion
PLUGINS += mod-mda-lv2
PLUGINS += mod-midi-utilities
PLUGINS += mod-utilities
PLUGINS += modmeter
PLUGINS += neuralrecord
PLUGINS += neural-amp-modeler-lv2
PLUGINS += notes-lv2
PLUGINS += remaincalm-plugins
PLUGINS += schrammel-ojd
PLUGINS += screcord
PLUGINS += setbfree
PLUGINS += setbfree-mod
PLUGINS += shiro-plugins
PLUGINS += sooperlooper-lv2
PLUGINS += tap-lv2
# FIXME invalid macOS linker flags https://github.com/mod-audio/mod-desktop/actions/runs/11077667941/job/30783441664
# PLUGINS += vallsv-midi-display
PLUGINS += wolf-shaper
PLUGINS += x42-fil4
PLUGINS += x42-mclk
PLUGINS += x42-midifilter
PLUGINS += x42-midigen
# PLUGINS += x42-mtc
PLUGINS += x42-stepseq
PLUGINS += x42-tinygain
PLUGINS += x42-xfade
PLUGINS += zam-plugins
ifneq ($(PAWPAW_DEBUG),1)
# build issues around fftw https://github.com/moddevices/mod-desktop/actions/runs/7386470509/job/20093128972
PLUGINS += mod-pitchshifter
PLUGINS += modspectre
PLUGINS += pitchtracking-series
PLUGINS += x42-fat1
PLUGINS += x42-tuna-lv2-labs
endif
# issues with glib static build on non-universal builds (fails to link to -liconv)
ifneq ($(PAWPAW_TARGET),macos-10.15)
PLUGINS += fluidplug
endif
# conflict with lv2-dev
# PLUGINS += lv2-examples
# include plugin projects for version and bundle list
include $(foreach PLUGIN,$(PLUGINS),src/mod-plugin-builder/plugins/package/$(PLUGIN)/$(PLUGIN).mk)
# list of unwanted bundles (for a variety of reasons)
UNWANTED_BUNDLES = artyfx-bitta.lv2
UNWANTED_BUNDLES += b_whirl
UNWANTED_BUNDLES += mod-2voices.lv2
UNWANTED_BUNDLES += mod-bypass.lv2
UNWANTED_BUNDLES += mod-caps-AmpVTS.lv2
UNWANTED_BUNDLES += mod-caps-CabinetIV.lv2
UNWANTED_BUNDLES += mod-caps-CEO.lv2
UNWANTED_BUNDLES += mod-harmonizercs.lv2
UNWANTED_BUNDLES += mod-mda-Ambience.lv2
UNWANTED_BUNDLES += mod-mda-Degrade.lv2
UNWANTED_BUNDLES += mod-mda-DubDelay.lv2
UNWANTED_BUNDLES += mod-mda-Leslie.lv2
UNWANTED_BUNDLES += mod-mda-Overdrive.lv2
UNWANTED_BUNDLES += mod-mda-RePsycho.lv2
UNWANTED_BUNDLES += mod-mda-RingMod.lv2
UNWANTED_BUNDLES += mod-mda-RoundPan.lv2
UNWANTED_BUNDLES += sc_record.lv2
UNWANTED_BUNDLES += tap-autopan.lv2
UNWANTED_BUNDLES += tap-dynamics.lv2
UNWANTED_BUNDLES += tap-dynamics-st.lv2
UNWANTED_BUNDLES += tap-eqbw.lv2
UNWANTED_BUNDLES += tap-eq.lv2
UNWANTED_BUNDLES += tap-reverb.lv2
UNWANTED_BUNDLES += tap-sigmoid.lv2
# list of known good bundles
BUNDLES = $(filter-out $(UNWANTED_BUNDLES),$(foreach PLUGIN,$(PLUGINS),$($(call BUILDROOT_VAR,$(PLUGIN))_BUNDLES)))
# add plugins to build target
TARGETS += $(foreach PLUGIN,$(PLUGINS),$(call PLUGIN_STAMP,$(PLUGIN)))
TARGETS += src/DPF/utils/lv2_ttl_generator$(APP_EXT)
# ---------------------------------------------------------------------------------------------------------------------
all: $(TARGETS)
./utils/run.sh $(PAWPAW_TARGET) $(MAKE) HAVE_OPENGL=true NOOPT=true -C src/plugin
./utils/run.sh $(PAWPAW_TARGET) $(CURDIR)/src/DPF/utils/generate-ttl.sh build-plugin
clean:
$(MAKE) clean -C src/DPF
$(MAKE) clean -C src/mod-host
$(MAKE) clean -C src/mod-ui/utils
$(MAKE) clean -C src/plugin
$(MAKE) clean -C src/systray
rm -rf build
rm -rf build-midi-merger
rm -rf build-plugin
rm -rf build-plugin-stamps
rm -rf build-pedalboard
rm -rf build-ui
jack:
./utils/run.sh $(PAWPAW_TARGET) $(MAKE) HAVE_OPENGL=true NOOPT=true -C src/plugin jack
src/DPF/utils/lv2_ttl_generator$(APP_EXT):
./utils/run.sh $(PAWPAW_TARGET) $(MAKE) NOOPT=true -C src/DPF/utils/lv2-ttl-generator
plugins: $(foreach PLUGIN,$(PLUGINS),$(call PLUGIN_STAMP,$(PLUGIN)))
run: $(TARGETS)
./utils/test.sh $(PAWPAW_TARGET)
version:
@echo $(VERSION)
# ---------------------------------------------------------------------------------------------------------------------
wasm:
$(MAKE) PAWPAW_TARGET=wasm
wasm-app:
./utils/run.sh wasm $(MAKE) -C src/systray
wasm-bootstrap:
./src/PawPaw/bootstrap-mod.sh wasm
wasm-plugins:
$(MAKE) PAWPAW_TARGET=wasm plugins
# ---------------------------------------------------------------------------------------------------------------------
win64:
$(MAKE) PAWPAW_TARGET=win64
win64-app:
./utils/run.sh win64 $(MAKE) -C src/systray
win64-bootstrap:
./src/PawPaw/bootstrap-mod.sh win64
win64-plugin:
./utils/run.sh win64 $(MAKE) -C src/plugin
win64-plugins:
$(MAKE) PAWPAW_TARGET=win64 plugins
# ---------------------------------------------------------------------------------------------------------------------
ifeq ($(LINUX),true)
build-ui/libjack.so.0: $(PAWPAW_PREFIX)/lib/libjack.so.0 build/lib/library.zip
ln -sf $(abspath $<) $@
touch $@
endif
build-ui/lib/libmod_utils$(SO_EXT): src/mod-ui/utils/libmod_utils$(SO_EXT) build/lib/library.zip
ln -sf $(abspath $<) $@
touch $@
# ---------------------------------------------------------------------------------------------------------------------
build/mod-desktop.app/Contents/Info.plist: utils/macos/app.plist.in
@mkdir -p build/mod-desktop.app/Contents
sed -e "s/@version@/$(VERSION)/" $< > $@
build/mod-desktop.app/Contents/Frameworks/Qt%.framework: $(PAWPAW_PREFIX)/lib/Qt%.framework
@mkdir -p build/mod-desktop.app/Contents/Frameworks
ln -sf $(abspath $<) $@
build/mod-desktop.app/Contents/MacOS/jackd: $(PAWPAW_PREFIX)/bin/jackd
@mkdir -p build/mod-desktop.app/Contents/MacOS
ln -sf $(abspath $<) $@
build/mod-desktop.app/Contents/MacOS/jack/jack-session.conf: utils/jack/jack-session.conf
@mkdir -p build/mod-desktop.app/Contents/MacOS/jack
ln -sf $(abspath $<) $@
build/mod-desktop.app/Contents/MacOS/jack/jack_%.so: $(PAWPAW_PREFIX)/lib/jack/jack_%.so
@mkdir -p build/mod-desktop.app/Contents/MacOS/jack
ln -sf $(abspath $<) $@
build/mod-desktop.app/Contents/MacOS/jack/mod-host.so: src/mod-host/mod-host.so
@mkdir -p build/mod-desktop.app/Contents/MacOS/jack
ln -sf $(abspath $<) $@
build/mod-desktop.app/Contents/MacOS/jack/mod-midi-broadcaster.so: build-midi-merger/mod-midi-broadcaster.so
@mkdir -p build/mod-desktop.app/Contents/MacOS/jack
ln -sf $(abspath $<) $@
build/mod-desktop.app/Contents/MacOS/jack/mod-midi-merger.so: build-midi-merger/mod-midi-merger.so
@mkdir -p build/mod-desktop.app/Contents/MacOS/jack
ln -sf $(abspath $<) $@
build/mod-desktop.app/Contents/MacOS/libjack%: $(PAWPAW_PREFIX)/lib/libjack%
@mkdir -p build/mod-desktop.app/Contents/MacOS
ln -sf $(abspath $<) $@
build/mod-desktop.app/Contents/MacOS/lib/library.zip: build-pedalboard/mod-pedalboard$(APP_EXT) build-ui/mod-ui$(APP_EXT)
@mkdir -p build
ln -sf $(abspath build-ui/lib) build/mod-desktop.app/Contents/MacOS/lib
touch $@
build/mod-desktop.app/Contents/MacOS/mod-desktop: src/systray/mod-desktop
@mkdir -p build/mod-desktop.app/Contents/MacOS
cp -v $(abspath $<) $@
build/mod-desktop.app/Contents/MacOS/mod-pedalboard: build-pedalboard/mod-pedalboard$(APP_EXT)
@mkdir -p build/mod-desktop.app/Contents/MacOS
ln -sf $(abspath $<) $@
build/mod-desktop.app/Contents/MacOS/mod-ui: build-ui/mod-ui$(APP_EXT)
@mkdir -p build/mod-desktop.app/Contents/MacOS
ln -sf $(abspath $<) $@
build/mod-desktop.app/Contents/MacOS/mod: src/mod-ui/mod
@mkdir -p build/mod-desktop.app/Contents/MacOS/
ln -sf $(abspath $<) $@
build/mod-desktop.app/Contents/MacOS/modtools: src/mod-ui/modtools
@mkdir -p build/mod-desktop.app/Contents/MacOS/
ln -sf $(abspath $<) $@
build/mod-desktop.app/Contents/PlugIns/generic/libq%.dylib: $(PAWPAW_PREFIX)/lib/qt5/plugins/generic/libq%.dylib
@mkdir -p build/mod-desktop.app/Contents/PlugIns/generic
ln -sf $(abspath $<) $@
build/mod-desktop.app/Contents/PlugIns/iconengines/libq%.dylib: $(PAWPAW_PREFIX)/lib/qt5/plugins/iconengines/libq%.dylib
@mkdir -p build/mod-desktop.app/Contents/PlugIns/iconengines
ln -sf $(abspath $<) $@
build/mod-desktop.app/Contents/PlugIns/imageformats/libq%.dylib: $(PAWPAW_PREFIX)/lib/qt5/plugins/imageformats/libq%.dylib
@mkdir -p build/mod-desktop.app/Contents/PlugIns/imageformats
ln -sf $(abspath $<) $@
build/mod-desktop.app/Contents/LV2:
@mkdir -p build/mod-desktop.app/Contents
@mkdir -p build/plugins
ln -sf $(abspath build/plugins) $@
build/mod-desktop.app/Contents/PlugIns/platforms/libq%.dylib: $(PAWPAW_PREFIX)/lib/qt5/plugins/platforms/libq%.dylib
@mkdir -p build/mod-desktop.app/Contents/PlugIns/platforms
ln -sf $(abspath $<) $@
build/mod-desktop.app/Contents/PlugIns/styles/libq%.dylib: $(PAWPAW_PREFIX)/lib/qt5/plugins/styles/libq%.dylib
@mkdir -p build/mod-desktop.app/Contents/PlugIns/styles
ln -sf $(abspath $<) $@
build/mod-desktop.app/Contents/Resources/default.pedalboard: src/mod-ui/default.pedalboard
@mkdir -p build/mod-desktop.app/Contents/Resources
ln -sf $(abspath $<) $@
build/mod-desktop.app/Contents/Resources/html: src/mod-ui/html
@mkdir -p build/mod-desktop.app/Contents/Resources
ln -sf $(abspath $<) $@
build/mod-desktop.app/Contents/Resources/mod-hardware-descriptor.json: utils/macos/mod-hardware-descriptor.json
@mkdir -p build/mod-desktop.app/Contents/Resources
ln -sf $(abspath $<) $@
build/mod-desktop.app/Contents/Resources/mod-logo.icns: res/mod-logo.icns
@mkdir -p build/mod-desktop.app/Contents/Resources
ln -sf $(abspath $<) $@
build/mod-desktop.app/Contents/Resources/pedalboards: pedalboards
@mkdir -p build/mod-desktop.app/Contents/Resources
ln -sf $(abspath $<) $@
build/mod-desktop.app/Contents/Resources/VERSION: VERSION
@mkdir -p build/mod-desktop.app/Contents/Resources
ln -sf $(abspath $<) $@
# ---------------------------------------------------------------------------------------------------------------------
build/default.pedalboard: src/mod-ui/default.pedalboard
@mkdir -p build
ln -sf $(abspath $<) $@
build/html: src/mod-ui/html
@mkdir -p build
ln -sf $(abspath $<) $@
build/jackd$(APP_EXT): $(PAWPAW_PREFIX)/bin/jackd$(APP_EXT)
@mkdir -p build
ln -sf $(abspath $<) $@
build/jack/%.conf: utils/jack/%.conf
@mkdir -p build/jack
ln -sf $(abspath $<) $@
build/jack/mod-host$(SO_EXT): src/mod-host/mod-host.so
@mkdir -p build/jack
ln -sf $(abspath $<) $@
build/jack/mod-midi-broadcaster$(SO_EXT): build-midi-merger/mod-midi-broadcaster$(SO_EXT)
@mkdir -p build/jack
ln -sf $(abspath $<) $@
build/jack/mod-midi-merger$(SO_EXT): build-midi-merger/mod-midi-merger$(SO_EXT)
@mkdir -p build/jack
ln -sf $(abspath $<) $@
build/lib/library.zip: build-pedalboard/mod-pedalboard$(APP_EXT) build-ui/mod-ui$(APP_EXT)
@mkdir -p build
rm -f build/lib
ln -sf $(abspath build-ui/lib) build/lib
touch $@
build/mod-desktop$(APP_EXT): src/systray/mod-desktop$(APP_EXT)
@mkdir -p build
ln -sf $(abspath $<) $@
build/mod-pedalboard$(APP_EXT): build-pedalboard/mod-pedalboard$(APP_EXT)
@mkdir -p build
ln -sf $(abspath $<) $@
build/mod-ui$(APP_EXT): build-ui/mod-ui$(APP_EXT)
@mkdir -p build
ln -sf $(abspath $<) $@
build/mod: src/mod-ui/mod
@mkdir -p build
ln -sf $(abspath $<) $@
build/modtools: src/mod-ui/modtools
@mkdir -p build
ln -sf $(abspath $<) $@
ifeq ($(WINDOWS),true)
build/mod-hardware-descriptor.json: utils/win64/mod-hardware-descriptor.json
@mkdir -p build
ln -sf $(abspath $<) $@
else
build/mod-hardware-descriptor.json: utils/linux/mod-hardware-descriptor.json
@mkdir -p build
ln -sf $(abspath $<) $@
endif
build/pedalboards: pedalboards
@mkdir -p build
ln -sf $(abspath $<) $@
build/VERSION: VERSION
@mkdir -p build
ln -sf $(abspath $<) $@
# ---------------------------------------------------------------------------------------------------------------------
build/jack/alsa_midi.so: $(PAWPAW_PREFIX)/lib/jack/alsa_midi.so
@mkdir -p build/jack
ln -sf $(abspath $<) $@
build/jack/jack_%: $(PAWPAW_PREFIX)/lib/jack/jack_%
@mkdir -p build/jack
ln -sf $(abspath $<) $@
build/libjack%: $(PAWPAW_PREFIX)/lib/libjack%
@mkdir -p build
ln -sf $(abspath $<) $@
build/libpython%: $(PAWPAW_PREFIX)/bin/libpython%
@mkdir -p build
ln -sf $(abspath $<) $@
build/mod-desktop-asio.dll: src/mod-desktop-asio/mod-desktop-asio.dll
@mkdir -p build
ln -sf $(abspath $<) $@
build/Qt5%.dll: $(PAWPAW_PREFIX)/bin/Qt5%.dll
@mkdir -p build
ln -sf $(abspath $<) $@
build/generic/q%.dll: $(PAWPAW_PREFIX)/lib/qt5/plugins/generic/q%.dll
@mkdir -p build/generic
ln -sf $(abspath $<) $@
build/iconengines/q%.dll: $(PAWPAW_PREFIX)/lib/qt5/plugins/iconengines/q%.dll
@mkdir -p build/iconengines
ln -sf $(abspath $<) $@
build/imageformats/q%.dll: $(PAWPAW_PREFIX)/lib/qt5/plugins/imageformats/q%.dll
@mkdir -p build/imageformats
ln -sf $(abspath $<) $@
build/platforms/q%.dll: $(PAWPAW_PREFIX)/lib/qt5/plugins/platforms/q%.dll
@mkdir -p build/platforms
ln -sf $(abspath $<) $@
build/styles/q%.dll: $(PAWPAW_PREFIX)/lib/qt5/plugins/styles/q%.dll
@mkdir -p build/styles
ln -sf $(abspath $<) $@
# ---------------------------------------------------------------------------------------------------------------------
ifeq ($(WINDOWS),true)
PYNSEP = '-'
else
PYNSEP = '_'
endif
build-pedalboard/mod-pedalboard$(APP_EXT): utils/cxfreeze/mod-pedalboard.py utils/cxfreeze/mod-pedalboard-setup.py $(BOOTSTRAP_FILES)
./utils/run.sh $(PAWPAW_TARGET) python3 utils/cxfreeze/mod-pedalboard.py build_exe
rm -rf build-pedalboard/lib/PyQt5
unzip -o build-pedalboard/lib/library.zip mod$(PYNSEP)pedalboard__init__.pyc mod$(PYNSEP)pedalboard__main__.pyc -d build-pedalboard
touch $@
# ---------------------------------------------------------------------------------------------------------------------
build-ui/mod-ui$(APP_EXT): utils/cxfreeze/mod-ui.py utils/cxfreeze/mod-ui-setup.py build-pedalboard/mod-pedalboard$(APP_EXT)
./utils/run.sh $(PAWPAW_TARGET) python3 utils/cxfreeze/mod-ui.py build_exe
rm -rf build-ui/lib/PyQt5
zip -j build-ui/lib/library.zip build-pedalboard/mod$(PYNSEP)pedalboard__init__.pyc build-pedalboard/mod$(PYNSEP)pedalboard__main__.pyc
touch $@
src/mod-ui/utils/libmod_utils$(SO_EXT): $(BOOTSTRAP_FILES) src/mod-ui/utils/utils.h src/mod-ui/utils/utils_jack.cpp src/mod-ui/utils/utils_lilv.cpp
./utils/run.sh $(PAWPAW_TARGET) $(MAKE) MOD_DESKTOP=1 -C src/mod-ui/utils
# ---------------------------------------------------------------------------------------------------------------------
src/mod-host/mod-host.so: src/mod-host/src/*.c src/mod-host/src/*.h src/mod-host/src/monitor/*.c src/mod-host/src/monitor/*.h $(BOOTSTRAP_FILES)
./utils/run.sh $(PAWPAW_TARGET) $(MAKE) MOD_DESKTOP=1 SKIP_READLINE=1 SKIP_FFTW335=1 -C src/mod-host
# ---------------------------------------------------------------------------------------------------------------------
build-midi-merger/mod-midi-broadcaster$(SO_EXT): build-midi-merger/mod-midi-merger-standalone$(APP_EXT)
touch $@
build-midi-merger/mod-midi-merger$(SO_EXT): build-midi-merger/mod-midi-merger-standalone$(APP_EXT)
touch $@
build-midi-merger/mod-midi-merger-standalone$(APP_EXT): build-midi-merger/Makefile src/mod-midi-merger/src/*.c src/mod-midi-merger/src/*.h
./utils/run.sh $(PAWPAW_TARGET) cmake --build build-midi-merger
touch $@
build-midi-merger/Makefile: $(BOOTSTRAP_FILES)
./utils/run.sh $(PAWPAW_TARGET) cmake -S src/mod-midi-merger -B build-midi-merger
# ---------------------------------------------------------------------------------------------------------------------
src/mod-desktop-asio/mod-desktop-asio.dll: src/mod-desktop-asio/*.c
./utils/run.sh $(PAWPAW_TARGET) $(MAKE) -C src/mod-desktop-asio
src/systray/mod-desktop$(APP_EXT): src/systray/main.cpp src/systray/mod-desktop.hpp src/systray/mod-desktop.qrc src/systray/mod-desktop.ui src/systray/utils.cpp src/systray/utils.hpp src/systray/widgets.hpp
./utils/run.sh $(PAWPAW_TARGET) $(MAKE) -C src/systray
# ---------------------------------------------------------------------------------------------------------------------
define BUILD_PLUGIN
@mkdir -p build/plugins
./utils/plugin-builder/plugin-builder.sh $(PAWPAW_TARGET) $(1)
$(foreach BUNDLE,$(filter $(BUNDLES),$($(call BUILDROOT_VAR,$(1))_BUNDLES)),\
rm -f build/plugins/$(BUNDLE);\
ln -s $(abspath $(PAWPAW_PREFIX)/lib/lv2/$(BUNDLE)) build/plugins/$(BUNDLE);\
)
endef
build-plugin-stamps/%: $(BOOTSTRAP_FILES)
@mkdir -p build-plugin-stamps
$(call BUILD_PLUGIN,$(firstword $(subst $(COMMA), ,$*)))
touch $@
# ---------------------------------------------------------------------------------------------------------------------
bootstrap:
./src/PawPaw/bootstrap-mod.sh $(PAWPAW_TARGET)
$(PAWPAW_PREFIX)/bin/%:
./src/PawPaw/bootstrap-mod.sh $(PAWPAW_TARGET)
$(PAWPAW_PREFIX)/lib/jack/alsa_midi.so:
./src/PawPaw/bootstrap-mod.sh $(PAWPAW_TARGET)
$(PAWPAW_PREFIX)/lib/lib%:
./src/PawPaw/bootstrap-mod.sh $(PAWPAW_TARGET)
$(PAWPAW_PREFIX)/include/%:
./src/PawPaw/bootstrap-mod.sh $(PAWPAW_TARGET)
# ---------------------------------------------------------------------------------------------------------------------