Files
game-and-watch-retro-go/3rdparty/libmikmod/psp/Makefile.example
Konrad Beckmann 20d7fefaf9 Import mikmod
2021-08-02 02:19:41 +02:00

22 lines
528 B
Makefile

PSPSDK = $(shell psp-config --pspsdk-path)
PSPDIR = $(shell psp-config --psp-prefix)
INCDIR = ../include
CFLAGS = -G0 -Wall -O2 -fno-strict-aliasing
# -lpspaudio needed for psp audio driver
# -lm needed for aiff file writer driver (if it was compiled)
LIBS = -lmikmod -lpspaudio -lm
OBJS = example.o
TARGET = libmikmodtest
EXTRA_TARGETS = EBOOT.PBP
PSP_EBOOT_TITLE = libmikmodtest
EXTRA_CLEAN = clean_kxploit
include $(PSPSDK)/lib/build.mak
clean_kxploit:
rm -rf $(TARGET)
rm -rf "$(TARGET)%"