From 4adc4d1f0b0a3bf441b7337bfe36d993b8b7b828 Mon Sep 17 00:00:00 2001 From: Dimitris Panokostas Date: Wed, 23 Oct 2019 15:31:07 +0200 Subject: [PATCH] Fixed guisan references in Makefile --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 3532f5e3..4a6ae7b5 100644 --- a/Makefile +++ b/Makefile @@ -162,8 +162,8 @@ endif RM = rm -f AS = as -CC = gcc -CXX = g++ +CC ?= gcc +CXX ?= g++ STRIP ?= strip PROG = amiberry @@ -174,7 +174,7 @@ all: guisan $(PROG) export SDL_CFLAGS := $(shell sdl2-config --cflags) export SDL_LDFLAGS := $(shell sdl2-config --libs) -CPPFLAGS += $(SDL_CFLAGS) -Iexterna/libguisan/include +CPPFLAGS += $(SDL_CFLAGS) -Iexternal/libguisan/include LDFLAGS += $(SDL_LDFLAGS) -lSDL2_image -lSDL2_ttf -lguisan -Lexternal/libguisan/lib # @@ -427,7 +427,7 @@ endif clean: $(RM) $(PROG) $(PROG)-debug $(C_OBJS) $(OBJS) $(ASMS) $(DEPS) - $(MAKE) -C guisan-dev clean + $(MAKE) -C external/libguisan clean cleanprofile: $(RM) $(OBJS:%.o=%.gcda)