summaryrefslogtreecommitdiff
path: root/Makefile
blob: e1bea0d3848fa79be4d434d4db9f8d4ac2b7f36d (plain)
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
#!/usr/bin/make -f
# Makefile for zam-plugins #
# ------------------------ #
# Created by falkTX
#

all: libs plugins gen

# --------------------------------------------------------------

libs:
	$(MAKE) -C libs/dgl

plugins: libs
	$(MAKE) -C plugins/ZamComp
	$(MAKE) -C plugins/ZamCompX2
	$(MAKE) -C plugins/ZaMultiComp
	$(MAKE) -C plugins/ZaMultiCompX2
	$(MAKE) -C plugins/ZamTube


gen: plugins libs/lv2_ttl_generator
	@./libs/generate-ttl.sh

libs/lv2_ttl_generator:
	$(MAKE) -C libs/lv2-ttl-generator

# --------------------------------------------------------------

install: all

# --------------------------------------------------------------

clean:
	$(MAKE) clean -C libs/dgl
	$(MAKE) clean -C plugins/ZamComp
	$(MAKE) clean -C plugins/ZamCompX2
	$(MAKE) clean -C plugins/ZaMultiComp
	$(MAKE) clean -C plugins/ZaMultiCompX2
	$(MAKE) clean -C plugins/ZamTube
	$(MAKE) clean -C libs/lv2-ttl-generator

# --------------------------------------------------------------

.PHONY: libs plugins