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
|
# --------------------------------------------------------------------------------
#
# Copyright (C) 2005-2021 Fons Adriaensen <fons@linuxaudio.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# 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 for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
# --------------------------------------------------------------------------------
PREFIX ?= /usr/local
BINDIR ?= $(PREFIX)/bin
VERSION = 1.1.0
CPPFLAGS += -MMD -MP -DVERSION=\"$(VERSION)\"
CPPFLAGS += -ffast-math -funroll-loops
CXXFLAGS += -O2 -Wall
all: jconvolver fconvolver makemulti
JCONVOLVER_O = jconvolver.o config.o jconfig.o audiofile.o dither.o sstring.o jclient.o
jconvolver: LDLIBS += -lzita-convolver -lfftw3f -lsndfile -lclthreads -ljack -lpthread -lrt
jconvolver: $(JCONVOLVER_O)
$(CXX) $(LDFLAGS) -o $@ $(JCONVOLVER_O) $(LDLIBS)
$(JCONVOLVER_O):
-include $(JCONVOLVER_O:%.o=%.d)
FCONVOLVER_O = fconvolver.o config.o fconfig.o audiofile.o dither.o sstring.o
fconvolver: LDLIBS += -lzita-convolver -lfftw3f -lsndfile -lpthread -lrt
fconvolver: $(FCONVOLVER_O)
$(CXX) $(LDFLAGS) -o $@ $(FCONVOLVER_O) $(LDLIBS)
$(FCONVOLVER_O):
-include $(FCONVOLVER_O:%.o=%.d)
MAKEMULTI_O = makemulti.o audiofile.o dither.o
makemulti : LDLIBS += -lsndfile -lrt
makemulti: $(MAKEMULTI_O)
$(CXX) $(LDFLAGS) -o $@ $(MAKEMULTI_O) $(LDLIBS)
install: all
install -d $(DESTDIR)$(BINDIR)
install -m 755 jconvolver $(DESTDIR)$(BINDIR)
install -m 755 fconvolver $(DESTDIR)$(BINDIR)
install -d $(DESTDIR)$(PREFIX)/lib/jconvolver
install -m 755 makemulti $(DESTDIR)$(PREFIX)/lib/jconvolver
uninstall:
rm -f $(DESTDIR)$(BINDIR)/jconvolver
rm -f $(DESTDIR)$(BINDIR)/fconvolver
rm -f $(DESTDIR)$(BINDIR)/makemulti
clean:
/bin/rm -f *~ *.o *.a *.d *.so jconvolver fconvolver makemulti
|