blob: 5b9778107cd1a8bc88820e86f532f505fe506ce7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
ifndef C64_TOOLS_DSP_ROOT
$(error need C64_TOOLS_DSP_ROOT)
endif
include $(C64_TOOLS_DSP_ROOT)/install.mk
TARGET_BASENAME = pcsxr_spu
OPTFLAGS += -o3
CFLAGS += -mo
#CFLAGS += -k -mw
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
|