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
|
# Copyright (C) 2010 Mark Hills <mark@pogo.org.uk>
#
# 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.
#
INSTALL = install
PREFIX = $(HOME)
CFLAGS += -Wall -O3 -MMD
LDFLAGS += -O3
SDL_CFLAGS = `sdl-config --cflags`
SDL_LIBS = `sdl-config --libs` -lSDL_ttf
ALSA_LIBS = -lasound
JACK_LIBS = -ljack
# Import the optional configuration
-include .config
# Installation paths
BINDIR = $(PREFIX)/bin
EXECDIR = $(PREFIX)/lib/xwax
MANDIR = $(PREFIX)/share/man
DOCDIR = $(PREFIX)/share/doc
# Core objects and libraries
OBJS = interface.o library.o listing.o lut.o player.o rig.o \
selector.o timecoder.o track.o xwax.o
DEVICE_OBJS = device.o
DEVICE_CPPFLAGS =
DEVICE_LIBS =
# Optional device types
ifdef ALSA
DEVICE_OBJS += alsa.o
DEVICE_CPPFLAGS += -DWITH_ALSA
DEVICE_LIBS += $(ALSA_LIBS)
endif
ifdef JACK
DEVICE_OBJS += jack.o
DEVICE_CPPFLAGS += -DWITH_JACK
DEVICE_LIBS += $(JACK_LIBS)
endif
ifdef OSS
DEVICE_OBJS += oss.o
DEVICE_CPPFLAGS += -DWITH_OSS
endif
# Rules
.PHONY: clean install
xwax: $(OBJS) $(DEVICE_OBJS)
xwax: LDLIBS += $(SDL_LIBS) $(DEVICE_LIBS) -lm
xwax: LDFLAGS += -pthread
interface.o: CFLAGS += $(SDL_CFLAGS)
xwax.o: CFLAGS += $(SDL_CFLAGS) $(DEVICE_CPPFLAGS)
xwax.o: CPPFLAGS += -DEXECDIR=\"$(EXECDIR)\"
install:
$(INSTALL) -d $(BINDIR)
$(INSTALL) xwax $(BINDIR)/xwax
$(INSTALL) -d $(EXECDIR)
$(INSTALL) scan $(EXECDIR)/xwax-scan
$(INSTALL) import $(EXECDIR)/xwax-import
$(INSTALL) -d $(MANDIR)/man1
$(INSTALL) -m 0644 xwax.1 $(MANDIR)/man1/xwax.1
$(INSTALL) -d $(DOCDIR)/xwax
$(INSTALL) -m 0644 CHANGES $(DOCDIR)/xwax/CHANGES
$(INSTALL) -m 0644 README $(DOCDIR)/xwax/README
clean:
rm -f xwax *.o *.d *~
-include *.d
|