Description: missing CPPFLAGS, fix hardening-no-fortify-functions.
Index: beetle-wswan-libretro-master/Makefile
===================================================================
--- beetle-wswan-libretro-master.orig/Makefile	2016-06-09 06:00:00.000000000 -0300
+++ beetle-wswan-libretro-master/Makefile	2016-06-23 19:37:51.661416866 -0300
@@ -295,10 +295,10 @@
 endif
 
 %.o: %.cpp
-	$(CXX) -c -o $@ $< $(CXXFLAGS)
+	$(CXX) -c -o $@ $< $(CPPFLAGS) $(CXXFLAGS)
 
 %.o: %.c
-	$(CC) -c -o $@ $< $(CFLAGS)
+	$(CC) -c -o $@ $< $(CPPFLAGS) $(CFLAGS)
 
 clean:
 	rm -f $(TARGET) $(OBJECTS)
