shithub: cstory

Download patch

ref: 8dd1b05790c6e0979de56f4266df712d87e70771
parent: cccef2b089c0791f423a2f0df2fca8f4fb988a09
author: Clownacy <Clownacy@users.noreply.github.com>
date: Sun Jan 26 18:55:17 EST 2020

Fix compilation with the Makefile

--- a/Makefile
+++ b/Makefile
@@ -75,10 +75,10 @@
 endif
 
 ALL_CFLAGS += -std=c99 -MMD -MP -MF $@.d
-CSE2_CFLAGS += $(shell $(PKGCONFIG) sdl2 --cflags) $(shell $(PKGCONFIG) freetype2 --cflags)
+CSE2_CFLAGS += $(shell $(PKGCONFIG) sdl2 --cflags) $(shell $(PKGCONFIG) freetype2 --cflags) -Iexternal
 
 ALL_CXXFLAGS += -std=c++98 -MMD -MP -MF $@.d
-CSE2_CXXFLAGS += $(shell $(PKGCONFIG) sdl2 --cflags) $(shell $(PKGCONFIG) freetype2 --cflags)
+CSE2_CXXFLAGS += $(shell $(PKGCONFIG) sdl2 --cflags) $(shell $(PKGCONFIG) freetype2 --cflags) -Iexternal
 
 ifeq ($(STATIC), 1)
   ALL_LDFLAGS += -static
--