mirror of
https://github.com/joel16/procfw.git
synced 2024-11-27 05:20:21 +00:00
26 lines
443 B
Makefile
26 lines
443 B
Makefile
TARGET = kmod
|
|
OBJS = main.o imports.o
|
|
|
|
INCDIR = ../../../include
|
|
CFLAGS = -Os -G0 -Wall -fno-pic
|
|
|
|
OBJS += $(IMPORTS)
|
|
|
|
CXXFLAGS = $(CFLAGS) -fno-exceptions -fno-rtti
|
|
ASFLAGS = $(CFLAGS)
|
|
|
|
PSP_FW_VERSION = 620
|
|
|
|
BUILD_PRX = 1
|
|
PRX_EXPORTS = exports.exp
|
|
|
|
USE_KERNEL_LIBC=1
|
|
USE_KERNEL_LIBS=1
|
|
|
|
LIBDIR = ../libs
|
|
LDFLAGS = -mno-crt0 -nostartfiles
|
|
LIBS =
|
|
|
|
PSPSDK=$(shell psp-config --pspsdk-path)
|
|
include $(PSPSDK)/lib/build.mak
|