File: Makefile.example

package info (click to toggle)
libmikmod 3.3.13-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,188 kB
  • sloc: ansic: 36,299; sh: 5,013; makefile: 548; javascript: 1
file content (20 lines) | stat: -rw-r--r-- 465 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
PSPSDK = $(shell psp-config --pspsdk-path)
PSPDIR = $(shell psp-config --psp-prefix)

INCDIR = ../include
CFLAGS = -G0 -Wall -O2 -fno-strict-aliasing

# -lpspaudio is needed for psp audio driver
LIBS   = -lmikmod -lpspaudio

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)%"