shithub: cstory

Download patch

ref: 9c4695722796f325d12445524826e4c2937727da
parent: 9f60b08807843b07150a116969f87e65c8be7755
author: Clownacy <Clownacy@users.noreply.github.com>
date: Mon Mar 18 17:13:17 EDT 2019

...Actually make the RASPBERRY_PI option do something

--- a/Makefile
+++ b/Makefile
@@ -32,6 +32,10 @@
 	LIBS += -lkernel32
 endif
 
+ifeq ($(RASPBERRY_PI), 1)
+	CXXFLAGS += -DRASPBERRY_PI
+endif
+
 CXXFLAGS += -std=c++98 `pkg-config sdl2 --cflags` `pkg-config freetype2 --cflags` -MMD -MP -MF $@.d
 
 ifeq ($(STATIC), 1)