FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
wolf-shaper/Makefile at master · wolf-plugins/wolf-shaper · GitHub
wolf-plugins
/
wolf-shaper
Public
Notifications
You must be signed in to change notification settings
Fork
22
Star
261
Code
Issues
51
Pull requests
1
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
wolf-shaper
/
Makefile
Copy path
More file actions
More file actions
Latest commit
History
History
History
66 lines (48 loc) · 1.5 KB
Breadcrumbs
wolf-shaper
/
Makefile
Copy path
File metadata and controls
66 lines (48 loc) · 1.5 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
#
!/usr/bin/make -f
#
Makefile for DISTRHO Plugins #
#
---------------------------- #
#
Created by falkTX, Christopher Arndt, and Patrick Desaulniers
#
export
DISTRHO_NAMESPACE
= WolfShaperDISTRHO
export
DGL_NAMESPACE
= WolfShaperDGL
export
FILE_BROWSER_DISABLED
= true
export
CFLAGS
+= -fno-fast-math
export
CXXFLAGS
+= -fno-fast-math
include
dpf/Makefile.base.mk
all
: libs plugins gen
#
--------------------------------------------------------------
libs
:
$(
MAKE
)
-C dpf/dgl opengl
plugins
: libs
$(
MAKE
)
all -C src
ifneq
(
$(
CROSS_COMPILING
)
,true)
gen
: plugins dpf/utils/lv2_ttl_generator
@bash
$(
CURDIR
)
/dpf/utils/generate-ttl.sh
ifeq
(
$(
MACOS
)
,true)
@$(CURDIR)/dpf/utils/generate-vst-bundles.sh
endif
dpf/utils/lv2_ttl_generator
:
$(
MAKE
)
-C dpf/utils/lv2-ttl-generator
else
gen
: plugins dpf/utils/lv2_ttl_generator.exe
@bash
$(
CURDIR
)
/dpf/utils/generate-ttl.sh
dpf/utils/lv2_ttl_generator.exe
:
$(
MAKE
)
-C dpf/utils/lv2-ttl-generator WINDOWS=true
endif
#
--------------------------------------------------------------
release
:
LINUX=true ./tools/make-release.sh
WIN32=true ./tools/make-release.sh
./tools/bundle-source.sh
#
--------------------------------------------------------------
clean
:
$(
MAKE
)
clean -C dpf/dgl
$(
MAKE
)
clean -C dpf/utils/lv2-ttl-generator
$(
MAKE
)
clean -C src
rm -rf bin build
install
: all
$(
MAKE
)
install -C src
install-user
: all
$(
MAKE
)
install-user -C src
#
--------------------------------------------------------------
.PHONY
: all clean install install-user libs plugins gen
Back
|
FazBrowse Home
|
New Git URL