-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
113 lines (90 loc) · 2.88 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
#!/usr/bin/make -f
OPTIMIZATIONS ?= -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG
PREFIX ?= /usr/local
CFLAGS ?= $(OPTIMIZATIONS) -Wall
PKG_CONFIG?=pkg-config
STRIP?=strip
STRIPFLAGS?=-s
vslpt_VERSION?=$(shell git describe --tags HEAD 2>/dev/null | sed 's/-g.*$$//;s/^v//' || echo "LV2")
###############################################################################
LV2DIR ?= $(PREFIX)/lib/lv2
LOADLIBES=-lm
LV2NAME=vslpt
BUNDLE=vslpt-lv2
BUILDDIR=build/
targets=
ifneq ($(MOD),)
MODBRAND=mod:brand \"ReeseWang\";
GREPEXCL="^^^^"
else
GREPEXCL=mod:label[^;]*;
MODBRAND=
endif
UNAME=$(shell uname)
ifeq ($(UNAME),Darwin)
LV2LDFLAGS=-dynamiclib
LIB_EXT=.dylib
EXTENDED_RE=-E
STRIPFLAGS=-u -r -arch all -s lv2syms
targets+=lv2syms
else
LV2LDFLAGS=-Wl,-Bstatic -Wl,-Bdynamic
LIB_EXT=.so
EXTENDED_RE=-r
endif
ifneq ($(XWIN),)
CC=$(XWIN)-gcc
STRIP=$(XWIN)-strip
LV2LDFLAGS=-Wl,-Bstatic -Wl,-Bdynamic -Wl,--as-needed
LIB_EXT=.dll
override LDFLAGS += -static-libgcc -static-libstdc++
else
override CFLAGS += -fPIC -fvisibility=hidden
endif
targets+=$(BUILDDIR)$(LV2NAME)$(LIB_EXT)
ifneq ($(MOD),)
targets+=$(BUILDDIR)modgui
endif
###############################################################################
# extract versions
LV2VERSION=$(vslpt_VERSION)
include git2lv2.mk
# check for build-dependencies
ifeq ($(shell $(PKG_CONFIG) --exists lv2 || echo no), no)
$(error "LV2 SDK was not found")
endif
override CFLAGS += -std=c99 `$(PKG_CONFIG) --cflags lv2`
# build target definitions
default: all
all: $(BUILDDIR)manifest.ttl $(BUILDDIR)$(LV2NAME).ttl $(targets)
FILTERS := $(wildcard filters/*.c)
lv2syms:
echo "_lv2_descriptor" > lv2syms
$(BUILDDIR)manifest.ttl: manifest.ttl.in
@mkdir -p $(BUILDDIR)
cat manifest.ttl.in \
| sed 's/@LIB_EXT@/$(LIB_EXT)/g' \
> $(BUILDDIR)manifest.ttl
$(BUILDDIR)$(LV2NAME).ttl: $(LV2NAME).ttl.in
@mkdir -p $(BUILDDIR)
cat $(LV2NAME).ttl.in > $(BUILDDIR)$(LV2NAME).ttl
$(BUILDDIR)$(LV2NAME)$(LIB_EXT): $(LV2NAME).c
@mkdir -p $(BUILDDIR)
$(CC) $(CPPFLAGS) $(CFLAGS) \
-o $(BUILDDIR)$(LV2NAME)$(LIB_EXT) $(LV2NAME).c \
-shared $(LV2LDFLAGS) $(LDFLAGS) $(LOADLIBES)
# $(STRIP) $(STRIPFLAGS) $(BUILDDIR)$(LV2NAME)$(LIB_EXT)
# install/uninstall/clean target definitions
install: all
install -d $(DESTDIR)$(LV2DIR)/$(BUNDLE)
install -m755 $(BUILDDIR)$(LV2NAME)$(LIB_EXT) $(DESTDIR)$(LV2DIR)/$(BUNDLE)
install -m644 $(BUILDDIR)manifest.ttl $(BUILDDIR)$(LV2NAME).ttl $(DESTDIR)$(LV2DIR)/$(BUNDLE)
uninstall:
rm -f $(DESTDIR)$(LV2DIR)/$(BUNDLE)/manifest.ttl
rm -f $(DESTDIR)$(LV2DIR)/$(BUNDLE)/$(LV2NAME).ttl
rm -f $(DESTDIR)$(LV2DIR)/$(BUNDLE)/$(LV2NAME)$(LIB_EXT)
-rmdir $(DESTDIR)$(LV2DIR)/$(BUNDLE)
clean:
rm -f $(BUILDDIR)manifest.ttl $(BUILDDIR)$(LV2NAME).ttl $(BUILDDIR)$(LV2NAME)$(LIB_EXT) lv2syms
-test -d $(BUILDDIR) && rmdir $(BUILDDIR) || true
.PHONY: clean all install uninstall