From 9c4695722796f325d12445524826e4c2937727da Mon Sep 17 00:00:00 2001 From: Clownacy Date: Mon, 18 Mar 2019 21:13:17 +0000 Subject: [PATCH] ...Actually make the RASPBERRY_PI option do something --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 1f746fdf..3e45de52 100644 --- a/Makefile +++ b/Makefile @@ -32,6 +32,10 @@ ifeq ($(WINDOWS), 1) 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)