Description: Fix missing buildflags
 Upstream dropped CFLAGS while lowering optimization for *int.c and *intf.c:
 https://github.com/JuliaLang/openlibm/commit/dcc0d8da7400b68cb0b02c4605ce10fd605f3a1a
 Tests ran fine for me on ppc64el, so enabling optimization again.
Forwarded: https://github.com/JuliaLang/openlibm/pull/130
Author: Graham Inggs <ginggs@debian.org>
Last-Update: 2016-04-06
--- a/Make.inc
+++ b/Make.inc
@@ -55,13 +55,6 @@
 
 default: all
 
-# *int / *intf need to be built with -O0
-src/%int.c.o: src/%int.c
-	$(CC) $(CPPFLAGS) -O0 $(CFLAGS_add) -c $< -o $@
-
-src/%intf.c.o: src/%intf.c
-	$(CC) $(CPPFLAGS) -O0 $(CFLAGS_add) -c $< -o $@
-
 %.c.o: %.c
 	$(CC) $(CPPFLAGS) $(CFLAGS) $(CFLAGS_add) -c $< -o $@
 
