blob: 45fe76a48e50dcc00450c68b863c8ffbe24913e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
ifndef C64_TOOLS_DSP_ROOT
$(error need C64_TOOLS_DSP_ROOT)
endif
include $(C64_TOOLS_DSP_ROOT)/install.mk
TARGET_BASENAME = pcsxr_spu
OPTFLAGS += -O2
CFLAGS += -DNO_OS -DWANT_THREAD_CODE
OBJ = \
spu_c64x_dspcode.o64
include $(C64_TOOLS_DSP_ROOT)/build_area3.mk
include $(C64_TOOLS_DSP_ROOT)/build.mk
|