From c97f5b4b3a9e5de84ca8206f37536708255819f2 Mon Sep 17 00:00:00 2001 From: Ryan Schmidt Date: Wed, 6 May 2020 12:47:50 -0500 Subject: [PATCH] Use any LDFLAGS set when running ./configure --- projects/demo/Makefile.in | 1 + projects/effects/Makefile.in | 1 + projects/eguitar/Makefile.in | 1 + projects/examples/Makefile.in | 1 + projects/examples/libMakefile.in | 1 + projects/ragamatic/Makefile.in | 1 + src/Makefile.in | 1 + 7 files changed, 7 insertions(+) diff --git a/projects/demo/Makefile.in b/projects/demo/Makefile.in index 0f4a947..b390993 100644 --- a/projects/demo/Makefile.in +++ b/projects/demo/Makefile.in @@ -35,6 +35,7 @@ DEFS = @CPPFLAGS@ DEFS += @byte_order@ CFLAGS = @CXXFLAGS@ CFLAGS += -I$(INCLUDE) -I$(INCLUDE)/../src/include +LDFLAGS = @LDFLAGS@ LIBRARY = @LIBS@ REALTIME = @realtime@ diff --git a/projects/effects/Makefile.in b/projects/effects/Makefile.in index 59ba62c..ed1f59d 100644 --- a/projects/effects/Makefile.in +++ b/projects/effects/Makefile.in @@ -24,6 +24,7 @@ DEFS = @CPPFLAGS@ DEFS += @byte_order@ CFLAGS = @CXXFLAGS@ CFLAGS += -I$(INCLUDE) -I$(INCLUDE)/../src/include +LDFLAGS = @LDFLAGS@ LIBRARY = @LIBS@ REALTIME = @realtime@ diff --git a/projects/eguitar/Makefile.in b/projects/eguitar/Makefile.in index 9684724..a144b97 100644 --- a/projects/eguitar/Makefile.in +++ b/projects/eguitar/Makefile.in @@ -24,6 +24,7 @@ DEFS = @CPPFLAGS@ DEFS += @byte_order@ CFLAGS = @CXXFLAGS@ CFLAGS += -I$(INCLUDE) -I$(INCLUDE)/../src/include +LDFLAGS = @LDFLAGS@ LIBRARY = @LIBS@ REALTIME = @realtime@ diff --git a/projects/examples/Makefile.in b/projects/examples/Makefile.in index 0b99516..f242dc6 100644 --- a/projects/examples/Makefile.in +++ b/projects/examples/Makefile.in @@ -18,6 +18,7 @@ DEFS = @CPPFLAGS@ DEFS += @byte_order@ CFLAGS = @CXXFLAGS@ CFLAGS += -I$(INCLUDE) -I$(INCLUDE)/../src/include +LDFLAGS = @LDFLAGS@ LIBRARY = @LIBS@ REALTIME = @realtime@ diff --git a/projects/examples/libMakefile.in b/projects/examples/libMakefile.in index cc5706f..ecbf727 100644 --- a/projects/examples/libMakefile.in +++ b/projects/examples/libMakefile.in @@ -14,6 +14,7 @@ DEFS = @CPPFLAGS@ DEFS += @byte_order@ CFLAGS = @CXXFLAGS@ CFLAGS += -I$(INCLUDE) -Iinclude +LDFLAGS = @LDFLAGS@ LIBRARY = @LIBS@ REALTIME = @realtime@ diff --git a/projects/ragamatic/Makefile.in b/projects/ragamatic/Makefile.in index 3c078f4..aad2e32 100644 --- a/projects/ragamatic/Makefile.in +++ b/projects/ragamatic/Makefile.in @@ -25,6 +25,7 @@ DEFS = @CPPFLAGS@ DEFS += @byte_order@ CFLAGS = @CXXFLAGS@ CFLAGS += -I$(INCLUDE) -I$(INCLUDE)/../src/include +LDFLAGS = @LDFLAGS@ LIBRARY = @LIBS@ REALTIME = @realtime@ diff --git a/src/Makefile.in b/src/Makefile.in index 6588033..9675d2f 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -48,6 +48,7 @@ DEFS = @CPPFLAGS@ DEFS += @byte_order@ CFLAGS = @CXXFLAGS@ CFLAGS += $(INCLUDE) -Iinclude -fPIC +LDFLAGS = @LDFLAGS@ LIBS = @LIBS@ REALTIME = @realtime@