-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMakefile
350 lines (286 loc) · 10.8 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
#!/usr/bin/make -f
PREFIX ?= /usr/local
BINDIR ?= $(PREFIX)/bin
MANDIR ?= $(PREFIX)/share/man/man1
LV2DIR ?= $(PREFIX)/lib/lv2
CFLAGS ?= -g -Wall -Wno-unused-function
PKG_CONFIG?=pkg-config
STRIP?= strip
EXTERNALUI?=no
BUILDGTK?=no
KXURI?=yes
RW?=robtk/
###############################################################################
MACHINE=$(shell uname -m)
ifneq (,$(findstring x64,$(MACHINE)))
HAVE_SSE=yes
endif
ifneq (,$(findstring 86,$(MACHINE)))
HAVE_SSE=yes
endif
ifeq ($(HAVE_SSE),yes)
OPTIMIZATIONS ?= -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG
else
OPTIMIZATIONS ?= -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG
endif
###############################################################################
BUILDDIR=build/
BUNDLE=sisco.lv2
LV2NAME=sisco
LV2GUI=siscoUI_gl
LV2GTK=siscoUI_gtk
sisco_VERSION?=$(shell git describe --tags HEAD | sed 's/-g.*$$//;s/^v//' || echo "LV2")
#########
LV2UIREQ=
LV2CFLAGS=-I. $(CFLAGS)
JACKCFLAGS=-I. $(CFLAGS)
GLUICFLAGS=-I.
GTKUICFLAGS=-I.
UNAME=$(shell uname)
ifeq ($(UNAME),Darwin)
LV2LDFLAGS=-dynamiclib
LIB_EXT=.dylib
EXE_EXT=
UI_TYPE=ui:CocoaUI
PUGL_SRC=$(RW)pugl/pugl_osx.mm
PKG_GL_LIBS=
GLUILIBS=-framework Cocoa -framework OpenGL -framework CoreFoundation
BUILDGTK=no
STRIPFLAGS=-u -r -arch all -s $(RW)lv2syms
EXTENDED_RE=-E
else
LV2LDFLAGS=-Wl,-Bstatic -Wl,-Bdynamic -Wl,--as-needed -pthread
LIB_EXT=.so
EXE_EXT=
UI_TYPE=ui:X11UI
PUGL_SRC=$(RW)pugl/pugl_x11.c
PKG_GL_LIBS=glu gl
GLUILIBS=-lX11
GLUICFLAGS+=`$(PKG_CONFIG) --cflags glu` -pthread
STRIPFLAGS= -s
EXTENDED_RE=-r
endif
ifneq ($(XWIN),)
CC=$(XWIN)-gcc
CXX=$(XWIN)-g++
LV2LDFLAGS=-Wl,-Bstatic -Wl,-Bdynamic -Wl,--as-needed -lpthread
LIB_EXT=.dll
EXE_EXT=.exe
PUGL_SRC=$(RW)pugl/pugl_win.cpp
PKG_GL_LIBS=
UI_TYPE=ui:WindowsUI
GLUILIBS=-lws2_32 -lwinmm -lopengl32 -lglu32 -lgdi32 -lcomdlg32 -lpthread
BUILDGTK=no
GLUICFLAGS=-I.
override LDFLAGS += -static-libgcc -static-libstdc++
endif
ifeq ($(EXTERNALUI), yes)
ifeq ($(KXURI), yes)
UI_TYPE=kx:Widget
LV2UIREQ+=lv2:requiredFeature kx:Widget;
LV2CFLAGS += -DXTERNAL_UI
else
LV2UIREQ+=lv2:requiredFeature ui:external;
LV2CFLAGS += -DXTERNAL_UI
UI_TYPE=ui:external
endif
endif
ifeq ($(BUILDOPENGL)$(BUILDGTK), nono)
$(warning at least one of gtk or openGL needs to be enabled)
$(warning not building sisco)
else
targets=$(BUILDDIR)manifest.ttl $(BUILDDIR)$(LV2NAME).ttl
targets+=$(BUILDDIR)$(LV2NAME)$(LIB_EXT)
targets+=$(BUILDDIR)x42-scope$(EXE_EXT)
endif
ifneq ($(BUILDOPENGL), no)
targets+=$(BUILDDIR)$(LV2GUI)$(LIB_EXT)
endif
ifneq ($(BUILDGTK), no)
targets+=$(BUILDDIR)$(LV2GTK)$(LIB_EXT)
PKG_GTK_LIBS=glib-2.0 gtk+-2.0
else
PKG_GTK_LIBS=
endif
###############################################################################
# extract versions
LV2VERSION=$(sisco_VERSION)
include git2lv2.mk
###############################################################################
# check for build-dependencies
ifeq ($(shell $(PKG_CONFIG) --exists lv2 || echo no), no)
$(error "LV2 SDK was not found")
endif
ifeq ($(shell $(PKG_CONFIG) --atleast-version=1.6.0 lv2 || echo no), no)
$(error "LV2 SDK needs to be version 1.6.0 or later")
endif
ifeq ($(shell $(PKG_CONFIG) --exists pango cairo $(PKG_GTK_LIBS) $(PKG_GL_LIBS) || echo no), no)
$(error "This plugin requires cairo pango $(PKG_GTK_LIBS) $(PKG_GL_LIBS)")
endif
ifeq ($(shell $(PKG_CONFIG) --exists jack || echo no), no)
$(warning *** libjack from http://jackaudio.org is required)
$(error Please install libjack-dev or libjack-jackd2-dev)
endif
ifneq ($(MAKECMDGOALS), submodules)
ifeq ($(wildcard $(RW)robtk.mk),)
$(warning This plugin needs https://github.com/x42/robtk)
$(info set the RW environment variale to the location of the robtk headers)
ifeq ($(wildcard .git),.git)
$(info or run 'make submodules' to initialize robtk as git submodule)
endif
$(error robtk not found)
endif
endif
# LV2 idle
GLUICFLAGS+=-DHAVE_IDLE_IFACE
GTKUICFLAGS+=-DHAVE_IDLE_IFACE
LV2UIREQ+=lv2:requiredFeature ui:idleInterface; lv2:extensionData ui:idleInterface;
# 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
# add library dependent flags and libs
LV2CFLAGS += `$(PKG_CONFIG) --cflags lv2`
LV2CFLAGS += $(OPTIMIZATIONS) -DVERSION="\"$(sisco_VERSION)\""
ifeq ($(XWIN),)
override LV2CFLAGS += -fPIC -fvisibility=hidden
endif
GTKUICFLAGS+= $(LV2CFLAGS) `$(PKG_CONFIG) --cflags gtk+-2.0 cairo pango`
GTKUILIBS+=`$(PKG_CONFIG) --libs gtk+-2.0 cairo pango`
GLUICFLAGS+= $(LV2CFLAGS) `$(PKG_CONFIG) --cflags cairo pango`
GLUILIBS+=`$(PKG_CONFIG) $(PKG_UI_FLAGS) --libs cairo pangocairo pango $(PKG_GL_LIBS)`
ifneq ($(XWIN),)
GLUILIBS+=-lpthread -lusp10
endif
GLUICFLAGS+=$(LIC_CFLAGS)
GLUILIBS+=$(LIC_LOADLIBES)
JACKCFLAGS+= $(OPTIMIZATIONS) -DVERSION="\"$(sisco_VERSION)\"" $(LIC_CFLAGS)
JACKCFLAGS+=`$(PKG_CONFIG) --cflags jack lv2 pango pangocairo $(PKG_GL_LIBS)`
JACKLIBS=-lm `$(PKG_CONFIG) $(PKG_UI_FLAGS) --libs pangocairo $(PKG_GL_LIBS)` $(GLUILIBS)
GLUICFLAGS+=-DUSE_GUI_THREAD
ifeq ($(GLTHREADSYNC), yes)
GLUICFLAGS+=-DTHREADSYNC
endif
ROBGL+= Makefile
ROBGTK += Makefile
###############################################################################
# build target definitions
default: all
submodule_pull:
-test -d .git -a .gitmodules -a -f Makefile.git && $(MAKE) -f Makefile.git submodule_pull
submodule_update:
-test -d .git -a .gitmodules -a -f Makefile.git && $(MAKE) -f Makefile.git submodule_update
submodule_check:
-test -d .git -a .gitmodules -a -f Makefile.git && $(MAKE) -f Makefile.git submodule_check
submodules:
-test -d .git -a .gitmodules -a -f Makefile.git && $(MAKE) -f Makefile.git submodules
all: submodule_check $(targets)
$(BUILDDIR)manifest.ttl: lv2ttl/manifest.gl.ttl.in lv2ttl/manifest.gtk.ttl.in lv2ttl/manifest.lv2.ttl.in lv2ttl/manifest.ttl.in Makefile
@mkdir -p $(BUILDDIR)
sed "s/@LV2NAME@/$(LV2NAME)/g" \
lv2ttl/manifest.ttl.in > $(BUILDDIR)manifest.ttl
ifneq ($(BUILDOPENGL), no)
sed "s/@LV2NAME@/$(LV2NAME)/g;s/@LIB_EXT@/$(LIB_EXT)/g;s/@URI_SUFFIX@//g" \
lv2ttl/manifest.lv2.ttl.in >> $(BUILDDIR)manifest.ttl
sed "s/@LV2NAME@/$(LV2NAME)/g;s/@LIB_EXT@/$(LIB_EXT)/g;s/@UI_TYPE@/$(UI_TYPE)/;s/@LV2GUI@/$(LV2GUI)/g" \
lv2ttl/manifest.gl.ttl.in >> $(BUILDDIR)manifest.ttl
endif
ifneq ($(BUILDGTK), no)
sed "s/@LV2NAME@/$(LV2NAME)/g;s/@LIB_EXT@/$(LIB_EXT)/g;s/@URI_SUFFIX@/_gtk/g" \
lv2ttl/manifest.lv2.ttl.in >> $(BUILDDIR)manifest.ttl
sed "s/@LV2NAME@/$(LV2NAME)/g;s/@LIB_EXT@/$(LIB_EXT)/g;s/@LV2GTK@/$(LV2GTK)/g" \
lv2ttl/manifest.gtk.ttl.in >> $(BUILDDIR)manifest.ttl
endif
$(BUILDDIR)$(LV2NAME).ttl: lv2ttl/$(LV2NAME).ttl.in lv2ttl/$(LV2NAME).lv2.ttl.in lv2ttl/$(LV2NAME).gui.ttl.in Makefile
@mkdir -p $(BUILDDIR)
sed "s/@LV2NAME@/$(LV2NAME)/g" \
lv2ttl/$(LV2NAME).ttl.in > $(BUILDDIR)$(LV2NAME).ttl
ifneq ($(BUILDGTK), no)
sed "s/@UI_URI_SUFFIX@/_gtk/;s/@UI_TYPE@/ui:GtkUI/;s/@UI_REQ@//;s/@URI_SUFFIX@/_gtk/g" \
lv2ttl/$(LV2NAME).gui.ttl.in >> $(BUILDDIR)$(LV2NAME).ttl
endif
ifneq ($(BUILDOPENGL), no)
sed "s/@UI_URI_SUFFIX@/_gl/;s/@UI_TYPE@/$(UI_TYPE)/;s/@UI_REQ@/$(LV2UIREQ)/;s/@URI_SUFFIX@//g" \
lv2ttl/$(LV2NAME).gui.ttl.in >> $(BUILDDIR)$(LV2NAME).ttl
sed "s/@URI_SUFFIX@//g;s/@NAME_SUFFIX@//g;s/@SISCOUI@/ui_gl/g;s/@VERSION@/lv2:microVersion $(LV2MIC) ;lv2:minorVersion $(LV2MIN) ;/g" \
lv2ttl/$(LV2NAME).lv2.ttl.in >> $(BUILDDIR)$(LV2NAME).ttl
endif
ifneq ($(BUILDGTK), no)
sed "s/@URI_SUFFIX@/_gtk/g;s/@NAME_SUFFIX@/ GTK/g;s/@SISCOUI@/ui_gtk/g;s/@VERSION@/lv2:microVersion $(LV2MIC) ;lv2:minorVersion $(LV2MIN) ;/g" \
lv2ttl/$(LV2NAME).lv2.ttl.in >> $(BUILDDIR)$(LV2NAME).ttl
endif
$(BUILDDIR)$(LV2NAME)$(LIB_EXT): src/sisco.c src/uris.h
@mkdir -p $(BUILDDIR)
$(CC) $(CPPFLAGS) $(LV2CFLAGS) -std=c99 \
-o $(BUILDDIR)$(LV2NAME)$(LIB_EXT) src/sisco.c \
-shared $(LV2LDFLAGS) $(LDFLAGS)
$(STRIP) $(STRIPFLAGS) $(BUILDDIR)$(LV2NAME)$(LIB_EXT)
sisco_UISRC= zita-resampler/resampler.cc zita-resampler/resampler-table.cc
$(BUILDDIR)$(LV2GTK)$(LIB_EXT): gui/sisco.c $(sisco_UISRC) \
zita-resampler/resampler.h zita-resampler/resampler-table.h src/uris.h
$(BUILDDIR)$(LV2GUI)$(LIB_EXT): gui/sisco.c $(sisco_UISRC) \
zita-resampler/resampler.h zita-resampler/resampler-table.h src/uris.h
$(BUILDDIR)x42-scope$(EXE_EXT): gui/sisco.c $(sisco_UISRC) \
zita-resampler/resampler.h zita-resampler/resampler-table.h src/uris.h \
src/sisco.c lv2ttl/jack_4chan.h
$(eval x42_scope_JACKSRC = $(sisco_UISRC) src/sisco.c)
x42_scope_JACKGUI = gui/sisco.c
x42_scope_LV2HTTL = lv2ttl/jack_4chan.h
x42_scope_JACKDESC = lv2ui_descriptor
-include $(RW)robtk.mk
###############################################################################
# install/uninstall/clean target definitions
install-bin: $(BUILDDIR)x42-scope$(EXE_EXT)
ifneq ($(targets),)
install -d $(DESTDIR)$(BINDIR)
install -m755 $(BUILDDIR)x42-scope$(EXE_EXT) $(DESTDIR)$(BINDIR)/
endif
install-man: x42-scope.1
ifneq ($(targets),)
install -d $(DESTDIR)$(MANDIR)
install -m644 x42-scope.1 $(DESTDIR)$(MANDIR)
endif
uninstall-bin:
rm -f $(DESTDIR)$(BINDIR)/x42-scope$(EXE_EXT)
-rmdir $(DESTDIR)$(BINDIR)
uninstall-man:
rm -f $(DESTDIR)$(MANDIR)/x42-scope.1
-rmdir $(DESTDIR)$(MANDIR)
install-lv2: all
ifneq ($(targets),)
install -d $(DESTDIR)$(LV2DIR)/$(BUNDLE)
install -m644 $(BUILDDIR)manifest.ttl $(BUILDDIR)$(LV2NAME).ttl $(DESTDIR)$(LV2DIR)/$(BUNDLE)
install -m755 $(BUILDDIR)$(LV2NAME)$(LIB_EXT) $(DESTDIR)$(LV2DIR)/$(BUNDLE)
ifneq ($(BUILDOPENGL), no)
install -m755 $(BUILDDIR)$(LV2GUI)$(LIB_EXT) $(DESTDIR)$(LV2DIR)/$(BUNDLE)
endif
ifneq ($(BUILDGTK), no)
install -m755 $(BUILDDIR)$(LV2GTK)$(LIB_EXT) $(DESTDIR)$(LV2DIR)/$(BUNDLE)
endif
endif
uninstall-lv2:
rm -f $(DESTDIR)$(LV2DIR)/$(BUNDLE)/manifest.ttl
rm -f $(DESTDIR)$(LV2DIR)/$(BUNDLE)/$(LV2NAME).ttl
rm -f $(DESTDIR)$(LV2DIR)/$(BUNDLE)/$(LV2NAME)$(LIB_EXT)
rm -f $(DESTDIR)$(LV2DIR)/$(BUNDLE)/$(LV2GUI)$(LIB_EXT)
rm -f $(DESTDIR)$(LV2DIR)/$(BUNDLE)/$(LV2GTK)$(LIB_EXT)
-rmdir $(DESTDIR)$(LV2DIR)/$(BUNDLE)
install: install-lv2 install-man install-bin
uninstall: uninstall-lv2 uninstall-man uninstall-bin
clean:
rm -f $(BUILDDIR)manifest.ttl $(BUILDDIR)$(LV2NAME).ttl \
$(BUILDDIR)$(LV2NAME)$(LIB_EXT) \
$(BUILDDIR)$(LV2GUI)$(LIB_EXT) \
$(BUILDDIR)$(LV2GTK)$(LIB_EXT)
rm -f $(BUILDDIR)/x42-scope$(EXE_EXT)
rm -rf $(BUILDDIR)*.dSYM
-test -d $(BUILDDIR) && rmdir $(BUILDDIR) || true
distclean: clean
rm -f cscope.out cscope.files tags
.PHONY: clean all install uninstall distclean \
install-bin install-man install-lv2 \
uninstall-bin uninstall-man uninstall-lv2 \
submodule_check submodules submodule_update submodule_pull