File: Makefile.example

package info (click to toggle)
libmikmod 3.3.7-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 5,964 kB
  • ctags: 5,116
  • sloc: ansic: 32,733; sh: 4,373; makefile: 267
file content (21 lines) | stat: -rw-r--r-- 528 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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)%"