mirror of
https://github.com/pspdev/pspsdk.git
synced 2025-12-24 12:42:36 +00:00
17 lines
304 B
Makefile
17 lines
304 B
Makefile
TARGET = gprofbasic
|
|
OBJS = main.o
|
|
|
|
INCDIR =
|
|
CFLAGS = -O2 -Wall -pg -g
|
|
CXXFLAGS = $(CFLAGS) -fno-exceptions -fno-rtti
|
|
ASFLAGS = $(CFLAGS)
|
|
|
|
LIBDIR =
|
|
LDFLAGS = -pg -g
|
|
|
|
EXTRA_TARGETS = EBOOT.PBP
|
|
PSP_EBOOT_TITLE = GProf Basic Example
|
|
|
|
PSPSDK=$(shell psp-config --pspsdk-path)
|
|
include $(PSPSDK)/lib/build.mak
|