mirror of
https://github.com/aap/librw.git
synced 2024-11-25 13:15:43 +00:00
11 lines
185 B
Makefile
11 lines
185 B
Makefile
CXX=ee-g++
|
|
BUILD := ps2
|
|
TARGET := librw-$(BUILD).a
|
|
CFLAGS := -Wall -g
|
|
INC := -I$(PS2SDK)/ee/include -I$(PS2SDK)/common/include
|
|
|
|
include Make.common
|
|
|
|
$(TARGET): $(OBJ)
|
|
ar scr $@ $(OBJ)
|