1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: Ole Streicher <olebole@debian.org>
Date: Wed, 15 Jan 2020 09:42:16 +0100
Subject: Add LDFLAGS to the generation of doxextr
---
doxygen/GNUmakefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doxygen/GNUmakefile b/doxygen/GNUmakefile
index a76d808..0064a65 100644
--- a/doxygen/GNUmakefile
+++ b/doxygen/GNUmakefile
@@ -45,7 +45,7 @@ EXTRADOX := mainpage.dox $(wildcard *_extras.dox)
% : %.c
-@ echo ''
- $(CC) $(CPPFLAGS) $(CFLAGS) -o $@ $<
+ $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ $<
# Don't fret if there's no specific sed script.
%.sed : ;
|