File: Makefile

package info (click to toggle)
amb-plugins 0.8.1-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, stretch
  • size: 356 kB
  • sloc: cpp: 5,065; makefile: 85
file content (65 lines) | stat: -rw-r--r-- 2,000 bytes parent folder | download | duplicates (2)
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
#    Copyright (C) 2004-2010 Fons Adriaensen <fons@kokkinizita.net>
#    
#    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.

DESTDIR =

CPPFLAGS += -I. -fPIC -D_REENTRANT -Wall -O3


all:	ambisonic0.so ambisonic1.so ambisonic2.so ambisonic3.so


ambisonic0.so:	ambisonic0.o ambisonic0_if.o virtmic.o allpass.o
	$(CXX) $(LDFLAGS) -shared -o $@ ambisonic0.o ambisonic0_if.o virtmic.o allpass.o

ambisonic0.o:	ladspaplugin.h ambisonic0.h
ambisonic0_if.o:	ladspaplugin.h ambisonic0.h


ambisonic1.so:	ambisonic1.o ambisonic1_if.o filter1.o
	$(CXX) $(LDFLAGS) -shared -o $@ ambisonic1.o ambisonic1_if.o filter1.o

ambisonic1.o:	ladspaplugin.h ambisonic1.h filter1.h
ambisonic1_if.o:	ladspaplugin.h ambisonic1.h


ambisonic2.so:	ambisonic2.o ambisonic2_if.o 
	$(CXX) $(LDFLAGS) -shared -o $@ ambisonic2.o ambisonic2_if.o

ambisonic2.o:	ladspaplugin.h ambisonic2.h
ambisonic2_if.o:	ladspaplugin.h ambisonic2.h


ambisonic3.so:	ambisonic3.o ambisonic3_if.o 
	$(CXX) $(LDFLAGS) -shared -o $@ ambisonic3.o ambisonic3_if.o

ambisonic3.o:	ladspaplugin.h ambisonic3.h
ambisonic3_if.o:	ladspaplugin.h ambisonic3.h


install:	all
	/usr/bin/install -m 755 *.so $(DESTDIR)/usr/lib/ladspa


DIR := $(shell basename `pwd`)

archive:	clean
	cd ..; /bin/rm -f $(DIR).tar.bz2; tar cvf $(DIR).tar $(DIR); bzip2 $(DIR).tar


clean:
	/bin/rm -f *~ *.o *.so