-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
66 lines (49 loc) · 1.63 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
# This file is part of jack_playrec
# Copyright (C) 2018 2019 Hörtech gGmbH
#
# 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 3 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, see <https://www.gnu.org/licenses/>.
include config.mk
CXXFLAGS+=-pthread
LDFLAGS+=
LDLIBS+=-ljack -lsndfile
PLAYREC_OBJ=jackclient.o jack_playrec.o jackiowav.o errorhandling.o cli.o
PAR_OBJ=jackclient.o jack_par.o errorhandling.o
all: jack_playrec jack_par
%.o: %.cc
@$(CXX) $(CXXFLAGS) -c $<
jack_playrec: $(PLAYREC_OBJ)
@$(CXX) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) $(LDLIBS)
jack_par: $(PAR_OBJ)
@$(CXX) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) $(LDLIBS)
.PHONY: clean exe doc
exe: install
$(MAKE) -C packaging/exe
deb: install
$(MAKE) -C packaging/deb
pkg: install
$(MAKE) -C packaging/pkg all
install: all
@mkdir -p $(DESTDIR)$(PREFIX)/bin
@install -m 755 jack_playrec $(DESTDIR)$(PREFIX)/bin/.
@install -m 755 jack_par $(DESTDIR)$(PREFIX)/bin/.
uninstall:
@rm -f $(DESTDIR)$(PREFIX)/bin/jack_playrec
@rm -f $(DESTDIR)$(PREFIX)/bin/jack_par
clean:
@rm -rf *.o
$(MAKE) -C doc clean
distclean: clean
@rm -f jack_playrec
@rm -f jack_par
doc:
$(MAKE) -C doc/