mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
16 lines
270 B
Makefile
16 lines
270 B
Makefile
|
|
TARGET = pauth
|
|
OBJS = main.o pauth.o
|
|
|
|
CFLAGS = -O2 -G0 -Wall -I.
|
|
LDFLAGS = -mno-crt0 -nostartfiles -L.
|
|
LIBS +=
|
|
|
|
BUILD_PRX = 1
|
|
|
|
EXTRA_TARGETS = EBOOT.PBP
|
|
PSP_EBOOT_TITLE = pauth file decrypter
|
|
|
|
PSPSDK = $(shell psp-config --pspsdk-path)
|
|
include $(PSPSDK)/lib/build.mak
|
|
|