-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
54 lines (41 loc) · 1.85 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
#!/usr/bin/make -f
# Makefile for DIE-Plugins #
# ------------------------ #
# Created by falkTX
#
include Makefile.base.mk
PREFIX ?= /usr/local
# --------------------------------------------------------------
all: build
# --------------------------------------------------------------
build:
$(MAKE) -C plugins/a-comp.lv2
$(MAKE) -C plugins/a-delay.lv2
$(MAKE) -C plugins/a-eq.lv2
$(MAKE) -C plugins/a-exp.lv2
$(MAKE) -C plugins/a-fluidsynth.lv2
$(MAKE) -C plugins/a-reverb.lv2
# --------------------------------------------------------------
clean:
$(MAKE) clean -C plugins/a-comp.lv2
$(MAKE) clean -C plugins/a-delay.lv2
$(MAKE) clean -C plugins/a-eq.lv2
$(MAKE) clean -C plugins/a-exp.lv2
$(MAKE) clean -C plugins/a-fluidsynth.lv2
$(MAKE) clean -C plugins/a-reverb.lv2
# --------------------------------------------------------------
install:
install -d $(DESTDIR)$(PREFIX)/lib/lv2/distrho-a-comp.lv2
install -d $(DESTDIR)$(PREFIX)/lib/lv2/distrho-a-delay.lv2
install -d $(DESTDIR)$(PREFIX)/lib/lv2/distrho-a-eq.lv2
install -d $(DESTDIR)$(PREFIX)/lib/lv2/distrho-a-exp.lv2
install -d $(DESTDIR)$(PREFIX)/lib/lv2/distrho-a-fluidsynth.lv2
install -d $(DESTDIR)$(PREFIX)/lib/lv2/distrho-a-reverb.lv2
install -m 644 bin/distrho-a-comp.lv2/*.* $(DESTDIR)$(PREFIX)/lib/lv2/distrho-a-comp.lv2/
install -m 644 bin/distrho-a-delay.lv2/*.* $(DESTDIR)$(PREFIX)/lib/lv2/distrho-a-delay.lv2/
install -m 644 bin/distrho-a-eq.lv2/*.* $(DESTDIR)$(PREFIX)/lib/lv2/distrho-a-eq.lv2/
install -m 644 bin/distrho-a-exp.lv2/*.* $(DESTDIR)$(PREFIX)/lib/lv2/distrho-a-exp.lv2/
install -m 644 bin/distrho-a-fluidsynth.lv2/*.* $(DESTDIR)$(PREFIX)/lib/lv2/distrho-a-fluidsynth.lv2/
install -m 644 bin/distrho-a-reverb.lv2/*.* $(DESTDIR)$(PREFIX)/lib/lv2/distrho-a-reverb.lv2/
# --------------------------------------------------------------
.PHONY: build