aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
blob: 674d42cbc89ce1f68c028f9d7bdb69cd7636b375 (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
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
.PHONY: all clean run sanitize backends windows full backends-full install
CORE_OBJS = core/core.o core/config.o core/backend.o core/plugin.o core/routing.o

PREFIX ?= /usr
PLUGIN_INSTALL = $(PREFIX)/lib/midimonster
EXAMPLES ?= $(PREFIX)/share/midimonster
SYSTEM := $(shell uname -s)
GITVERSION = $(shell git describe)

# Default compilation CFLAGS
CFLAGS ?= -g -Wall -Wpedantic
#CFLAGS += -DDEBUG
# Hide all non-API symbols for export
CFLAGS += -fvisibility=hidden

# Subdirectory objects need the include path
RCCFLAGS += -I./
core/%: CFLAGS += -I./

midimonster: LDLIBS = -ldl
# Replace version string with current git-describe if possible
ifneq "$(GITVERSION)" ""
CFLAGS += -DMIDIMONSTER_VERSION=\"$(GITVERSION)\"
endif

# Work around strange linker passing convention differences in Linux and OSX
ifeq ($(SYSTEM),Linux)
midimonster: LDFLAGS += -Wl,-export-dynamic
midimonster_gui: LDFLAGS += -Wl,-export-dynamic
endif
ifeq ($(SYSTEM),Darwin)
midimonster: LDFLAGS += -Wl,-export_dynamic
midimonster_gui: LDFLAGS += -Wl,-export_dynamic
endif

# Allow overriding the locations for backend plugins and default configuration
ifdef DEFAULT_CFG
midimonster: CFLAGS += -DDEFAULT_CFG=\"$(DEFAULT_CFG)\"
endif
ifdef PLUGINS
core/core.o: CFLAGS += -DPLUGINS=\"$(PLUGINS)\"
PLUGIN_INSTALL = $(PLUGINS)
endif

all: midimonster backends

full: midimonster backends-full

windows: midimonster.exe
	$(MAKE) -C backends windows

backends:
	$(MAKE) -C backends

backends-full:
	$(MAKE) -C backends full

# This rule can not be the default rule because OSX the target prereqs are not exactly the build prereqs
midimonster: midimonster.c portability.h $(CORE_OBJS)
	$(CC) $(CFLAGS) $(LDFLAGS) $< $(CORE_OBJS) $(LDLIBS) -o $@

# The minimal GUI works reasonably well with both gtk+-2.0 and gtk+-3.0
midimonster_gui: GTK_VERSION ?= gtk+-3.0
midimonster_gui: LDLIBS = -ldl
midimonster_gui: GTK_CFLAGS ?= -Wno-pedantic $(shell pkg-config --cflags $(GTK_VERSION))
midimonster_gui: GTK_LDLIBS ?= $(shell pkg-config --libs $(GTK_VERSION))
midimonster_gui: midimonster_gui.c portability.h $(CORE_OBJS)
	$(CC) $(CFLAGS) $(GTK_CFLAGS) $(LDFLAGS) $< $(CORE_OBJS) $(LDLIBS) $(GTK_LDLIBS) -o $@

assets/resource.o: assets/midimonster.rc assets/midimonster.ico
	$(RCC) $(RCCFLAGS) $< -o $@ --output-format=coff

assets/midimonster.ico: assets/MIDIMonster.svg
	convert -density 384 $< -define icon:auto-resize $@

midimonster.exe: export CC = x86_64-w64-mingw32-gcc
midimonster.exe: RCC ?= x86_64-w64-mingw32-windres
midimonster.exe: CFLAGS += -Wno-format
midimonster.exe: LDLIBS = -lws2_32
midimonster.exe: LDFLAGS += -Wl,--out-implib,libmmapi.a
midimonster.exe: midimonster.c portability.h $(CORE_OBJS) assets/resource.o
	$(CC) $(CFLAGS) $(LDFLAGS) $< $(CORE_OBJS) assets/resource.o $(LDLIBS) -o $@

clean:
	$(RM) midimonster midimonster_gui
	$(RM) midimonster.exe
	$(RM) libmmapi.a
	$(RM) assets/resource.o
	$(RM) $(CORE_OBJS)
	$(MAKE) -C backends clean

run:
	valgrind --leak-check=full --show-leak-kinds=all ./midimonster

install:
	install -d "$(DESTDIR)$(PREFIX)/bin"
	install -m 0755 midimonster "$(DESTDIR)$(PREFIX)/bin"
	install -d "$(DESTDIR)$(PLUGIN_INSTALL)"
	install -m 0755 backends/*.so "$(DESTDIR)$(PLUGIN_INSTALL)"
	install -d "$(DESTDIR)$(EXAMPLES)"
	install -m 0644 configs/* "$(DESTDIR)$(EXAMPLES)"
ifdef DEFAULT_CFG
# Only install the default configuration if it is not already present to avoid overwriting it
ifeq (,$(wildcard $(DEFAULT_CFG)))
	install -Dm 0644 monster.cfg "$(DESTDIR)$(DEFAULT_CFG)"
endif
endif

sanitize: export CC = clang
sanitize: export CFLAGS += -g -Wall -Wpedantic -fsanitize=address -fsanitize=undefined -fno-omit-frame-pointer
sanitize: midimonster backends