summaryrefslogtreecommitdiff
blob: 9822434b263a728ad629f31df4ccc8615d6a8e77 (plain)
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
Index: sndpeek-1.4/src/sndpeek/makefile.alsa
===================================================================
--- sndpeek-1.4.orig/src/sndpeek/makefile.alsa
+++ sndpeek-1.4/src/sndpeek/makefile.alsa
@@ -12,7 +12,7 @@ OBJS=chuck_fft.o RtAudio.o Thread.o sndp
 	MagFFT.o NormRMS.o MarSignal.o fmatrix.o
 
 sndpeek: $(OBJS)
-	$(CXX) -o $@ $(OBJS) $(LIBS)
+	$(CXX) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
 
 Centroid.o:
 	$(CXX) $(CFLAGS) $(MARSYAS_DIR)$*.cpp
Index: sndpeek-1.4/src/sndpeek/makefile.jack
===================================================================
--- sndpeek-1.4.orig/src/sndpeek/makefile.jack
+++ sndpeek-1.4/src/sndpeek/makefile.jack
@@ -11,7 +11,7 @@ OBJS=chuck_fft.o RtAudio.o Thread.o sndp
 	MagFFT.o NormRMS.o MarSignal.o fmatrix.o
 
 sndpeek: $(OBJS)
-	$(CXX) -o $@ $(OBJS) $(LIBS)
+	$(CXX) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
 
 Centroid.o:
 	$(CXX) $(CFLAGS) $(MARSYAS_DIR)$*.cpp
Index: sndpeek-1.4/src/sndpeek/makefile.oss
===================================================================
--- sndpeek-1.4.orig/src/sndpeek/makefile.oss
+++ sndpeek-1.4/src/sndpeek/makefile.oss
@@ -12,7 +12,7 @@ OBJS=chuck_fft.o RtAudio.o Thread.o sndp
 	MagFFT.o NormRMS.o MarSignal.o fmatrix.o
 
 sndpeek: $(OBJS)
-	$(CXX) -o $@ $(OBJS) $(LIBS)
+	$(CXX) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
 
 Centroid.o:
 	$(CXX) $(CFLAGS) $(MARSYAS_DIR)$*.cpp
Index: sndpeek-1.4/src/sndpeek/makefile.osx
===================================================================
--- sndpeek-1.4.orig/src/sndpeek/makefile.osx
+++ sndpeek-1.4/src/sndpeek/makefile.osx
@@ -13,7 +13,7 @@ OBJS=chuck_fft.o RtAudio.o Thread.o sndp
 	MagFFT.o NormRMS.o MarSignal.o fmatrix.o
 
 sndpeek: $(OBJS)
-	$(CPP) -o $@ $(OBJS) $(LIBS)
+	$(CPP) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
 
 Centroid.o:
 	$(CC) $(CFLAGS) $(MARSYAS_DIR)$*.cpp
Index: sndpeek-1.4/src/sndpeek/makefile.win32
===================================================================
--- sndpeek-1.4.orig/src/sndpeek/makefile.win32
+++ sndpeek-1.4/src/sndpeek/makefile.win32
@@ -12,7 +12,7 @@ OBJS=chuck_fft.o RtAudio.o Thread.o sndp
 	MagFFT.o NormRMS.o MarSignal.o fmatrix.o
 
 sndpeek: $(OBJS)
-	$(CPP) -o $@ $(OBJS) $(LIBS)
+	$(CPP) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
 
 Centroid.o:
 	$(CC) $(CFLAGS) $(MARSYAS_DIR)$*.cpp