mirror of
https://github.com/kbeckmann/game-and-watch-retro-go.git
synced 2025-12-16 13:15:55 +01:00
22 lines
528 B
Makefile
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)%"
|