14 lines
299 B
Makefile
14 lines
299 B
Makefile
TARGET = ludarium-fixture
|
|
OBJS = main.o
|
|
|
|
CFLAGS = -O2 -G0 -Wall -Wextra
|
|
CXXFLAGS = $(CFLAGS) -fno-exceptions -fno-rtti
|
|
ASFLAGS = $(CFLAGS)
|
|
LIBS = -lpspdebug
|
|
|
|
EXTRA_TARGETS = EBOOT.PBP
|
|
PSP_EBOOT_TITLE = Ludarium PSP Fixture
|
|
|
|
PSPSDK = $(shell psp-config --pspsdk-path)
|
|
include $(PSPSDK)/lib/build.mak
|