mirror of
https://github.com/joel16/gLib2D.git
synced 2024-11-26 19:40:42 +00:00
15 lines
285 B
Makefile
15 lines
285 B
Makefile
PSPSDK = $(shell psp-config --pspsdk-path)
|
|
PSPDIR = $(shell psp-config --psp-prefix)
|
|
|
|
CFLAGS = -O2 -G0 -g
|
|
|
|
OBJS = glib2d.o
|
|
TARGET_LIB = libglib2d.a
|
|
|
|
include $(PSPSDK)/lib/build.mak
|
|
|
|
install: all
|
|
mkdir -p $(PSPDIR)/include $(PSPDIR)/lib
|
|
cp *.h $(PSPDIR)/include
|
|
cp *.a $(PSPDIR)/lib
|