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
|
# Copyright (C) 2014 Mark Hills <mark@xwax.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2, as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License version 2 for more details.
#
# You should have received a copy of the GNU General Public License
# version 2 along with this program; if not, write to the Free
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
#
# Import the optional configuration
-include .config
# Libraries and dependencies
INSTALL ?= install
SDL_CFLAGS ?= `sdl-config --cflags`
SDL_LIBS ?= `sdl-config --libs` -lSDL_ttf
ALSA_LIBS ?= -lasound
JACK_LIBS ?= -ljack
# Installation paths
PREFIX ?= $(HOME)
BINDIR ?= $(PREFIX)/bin
EXECDIR ?= $(PREFIX)/libexec
MANDIR ?= $(PREFIX)/share/man
DOCDIR ?= $(PREFIX)/share/doc
# Build flags
CFLAGS ?= -O3
CFLAGS += -Wall
CPPFLAGS += -MMD
LDFLAGS ?= -O3
# Core objects and libraries
OBJS = controller.o \
cues.o \
deck.o \
device.o \
excrate.o \
external.o \
index.o \
interface.o \
library.o \
listbox.o \
lut.o \
player.o \
realtime.o \
rig.o \
selector.o \
status.o \
thread.o \
timecoder.o \
track.o \
xwax.o
DEVICE_CPPFLAGS =
DEVICE_LIBS =
TESTS = tests/cues \
tests/external \
tests/library \
tests/observer \
tests/status \
tests/timecoder \
tests/track \
tests/ttf
# Optional device types
ifdef ALSA
OBJS += alsa.o dicer.o midi.o
DEVICE_CPPFLAGS += -DWITH_ALSA
DEVICE_LIBS += $(ALSA_LIBS)
endif
ifdef JACK
OBJS += jack.o
DEVICE_CPPFLAGS += -DWITH_JACK
DEVICE_LIBS += $(JACK_LIBS)
endif
ifdef OSS
OBJS += oss.o
DEVICE_CPPFLAGS += -DWITH_OSS
endif
TEST_OBJS = $(addsuffix .o,$(TESTS))
DEPS = $(OBJS:.o=.d) $(TEST_OBJS:.o=.d)
# Rules
.PHONY: all
all: xwax tests
# Dynamic versioning
.PHONY: FORCE
.version: FORCE
./mkversion -r
VERSION = $(shell ./mkversion)
# Main binary
xwax: $(OBJS)
xwax: LDLIBS += $(SDL_LIBS) $(DEVICE_LIBS) -lm
xwax: LDFLAGS += -pthread
interface.o: CFLAGS += $(SDL_CFLAGS)
xwax.o: CFLAGS += $(SDL_CFLAGS)
xwax.o: CPPFLAGS += $(DEVICE_CPPFLAGS)
xwax.o: CPPFLAGS += -DEXECDIR=\"$(EXECDIR)\" -DVERSION=\"$(VERSION)\"
xwax.o: .version
# Install to system
.PHONY: install
install:
$(INSTALL) -D xwax $(DESTDIR)$(BINDIR)/xwax
$(INSTALL) -D scan $(DESTDIR)$(EXECDIR)/xwax-scan
$(INSTALL) -D import $(DESTDIR)$(EXECDIR)/xwax-import
$(INSTALL) -D -m 0644 xwax.1 $(DESTDIR)$(MANDIR)/man1/xwax.1
$(INSTALL) -D -m 0644 CHANGES $(DESTDIR)$(DOCDIR)/xwax/CHANGES
$(INSTALL) -D -m 0644 COPYING $(DESTDIR)$(DOCDIR)/xwax/COPYING
$(INSTALL) -D -m 0644 README $(DESTDIR)$(DOCDIR)/xwax/README
# Distribution archive from Git source code
.PHONY: dist
dist: .version
./mkdist $(VERSION)
# Editor tags files
TAGS: $(OBJS:.o=.c)
etags $^
# Manual tests
.PHONY: tests
tests: $(TESTS)
tests: CPPFLAGS += -I.
tests/cues: tests/cues.o cues.o
tests/external: tests/external.o external.o
tests/library: tests/library.o excrate.o external.o index.o library.o rig.o status.o thread.o track.o
tests/library: LDFLAGS += -pthread
tests/midi: tests/midi.o midi.o
tests/midi: LDLIBS += $(ALSA_LIBS)
tests/observer: tests/observer.o
tests/status: tests/status.o status.o
tests/timecoder: tests/timecoder.o lut.o timecoder.o
tests/track: tests/track.o excrate.o external.o index.o library.o rig.o status.o thread.o track.o
tests/track: LDFLAGS += -pthread
tests/track: LDLIBS += -lm
tests/ttf.o: tests/ttf.c # not needed except to workaround Make 3.81
tests/ttf.o: CFLAGS += $(SDL_CFLAGS)
tests/ttf: LDLIBS += $(SDL_LIBS)
.PHONY: clean
clean:
rm -f xwax \
$(OBJS) $(DEPS) \
$(TESTS) $(TEST_OBJS) \
TAGS
-include $(DEPS)
|