Before I installed SDL all the sample programs etc. compiled no problem, but now that SDL is installed, everything I try seems to compile OK until the very end, where I get these errors:
Code: Select all
/bin/sh: -c: line 0: unexpected EOF while looking for matching `''
/bin/sh: -c: line 1: syntax error: unexpected end of file
make: *** [hello.elf] Error 2
Code: Select all
TARGET = hello
OBJS = hello.o
CFLAGS = -O2 -G0 -Wall
CXXFLAGS = $(CFLAGS) -fno-exceptions -fno-rtti
ASFLAGS = $(CFLAGS)
EXTRA_TARGETS = EBOOT.PBP
PSP_EBOOT_TITLE = hello
PSPSDK=$(shell psp-config --pspsdk-path)
PSPBIN = $(PSPSDK)/../bin
CFLAGS += `$(PSPBIN)/sdl-config --cflags`
LIBS += `$(PSPBIN)/sdl-config --libs`
include $(PSPSDK)/lib/build.mak
Does anyone have any idea what might be causing this and how to fix it??
I've done a forum search but can't find anything similar.