-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
123 lines (100 loc) · 3.67 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
#!/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
midimap_VERSION?=$(shell git describe --tags HEAD 2>/dev/null | sed 's/-g.*$$//;s/^v//' || echo "LV2")
###############################################################################
LIB_EXT=.so
LV2DIR ?= $(PREFIX)/lib/lv2
LOADLIBES=-lm
LV2NAME=midimap
BUNDLE=midimap.lv2
BUILDDIR=build/
targets=
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)
###############################################################################
# extract versions
LV2VERSION=$(midimap_VERSION)
include git2lv2.mk
# check for build-dependencies
ifeq ($(shell $(PKG_CONFIG) --exists lv2 || echo no), no)
$(error "LV2 SDK was not found")
endif
# check for lv2_atom_forge_object new in 1.8.1 deprecates lv2_atom_forge_blank
ifeq ($(shell $(PKG_CONFIG) --atleast-version=1.8.1 lv2 && echo yes), yes)
override CFLAGS += -DHAVE_LV2_1_8
endif
ifeq ($(shell $(PKG_CONFIG) --atleast-version=1.18.6 lv2 && echo yes), yes)
override CFLAGS += -DHAVE_LV2_1_18_6
endif
override CFLAGS += -std=c99 `$(PKG_CONFIG) --cflags lv2`
# build target definitions
default: all
all: $(BUILDDIR)manifest.ttl $(BUILDDIR)presets.ttl $(BUILDDIR)$(LV2NAME).ttl $(targets)
lv2syms:
echo "_lv2_descriptor" > lv2syms
$(BUILDDIR)manifest.ttl: lv2ttl/manifest.ttl.in lv2ttl/presets.ttl.in presets/*.ttl
@mkdir -p $(BUILDDIR)
sed "s/@LV2NAME@/$(LV2NAME)/;s/@LIB_EXT@/$(LIB_EXT)/" \
lv2ttl/manifest.ttl.in > $(BUILDDIR)manifest.ttl
@for file in presets/*.ttl; do \
echo "" \
>> $(BUILDDIR)manifest.ttl;\
head -n 3 $$file \
>> $(BUILDDIR)manifest.ttl; \
echo "rdfs:seeAlso <presets.ttl> ." \
>> $(BUILDDIR)manifest.ttl;\
done
$(BUILDDIR)presets.ttl: lv2ttl/presets.ttl.in presets/*.ttl
@mkdir -p $(BUILDDIR)
cat lv2ttl/presets.ttl.in > $(BUILDDIR)presets.ttl
cat presets/*.ttl >> $(BUILDDIR)presets.ttl
$(BUILDDIR)$(LV2NAME).ttl: lv2ttl/$(LV2NAME).ttl.in
@mkdir -p $(BUILDDIR)
sed "s/@VERSION@/lv2:microVersion $(LV2MIC) ;lv2:minorVersion $(LV2MIN) ;/g" \
lv2ttl/$(LV2NAME).ttl.in > $(BUILDDIR)$(LV2NAME).ttl
$(BUILDDIR)$(LV2NAME)$(LIB_EXT): src/$(LV2NAME).c
@mkdir -p $(BUILDDIR)
$(CC) $(CPPFLAGS) $(CFLAGS) \
-o $(BUILDDIR)$(LV2NAME)$(LIB_EXT) src/$(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 $(BUILDDIR)presets.ttl $(DESTDIR)$(LV2DIR)/$(BUNDLE)
uninstall:
rm -f $(DESTDIR)$(LV2DIR)/$(BUNDLE)/manifest.ttl
rm -f $(DESTDIR)$(LV2DIR)/$(BUNDLE)/presets.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)presets.ttl $(BUILDDIR)$(LV2NAME).ttl $(BUILDDIR)$(LV2NAME)$(LIB_EXT) lv2syms
-test -d $(BUILDDIR) && rmdir $(BUILDDIR) || true
.PHONY: clean all install uninstall