Description: Enable hardening during build.
 Use CPPFLAGS, CFLAGS and LDFLAGS during built to inherit required
 build flags.
Author: Petter Reinholdtsen <pere@debian.org>
Forwarded: no
Last-Update: 2024-11-13
---
--- coco-cpp-20120102.orig/Makefile
+++ coco-cpp-20120102/Makefile
@@ -1,5 +1,5 @@
 all:
-	g++ *.cpp -o Coco $(CFLAGS) 
+	g++ *.cpp -o Coco $(CPPFLAGS) $(CFLAGS) $(LDFLAGS)
 
 clean:
 	rm -f Coco
