Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Libretro
tyrquake
Commits
1a477ecb
Commit
1a477ecb
authored
Feb 22, 2018
by
Libretro-Admin
Browse files
Start updating XDK1 rules
parent
6a76edff
Changes
2
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
1a477ecb
...
...
@@ -72,6 +72,15 @@ PLAT=_unix
endif
endif
SPACE
:=
SPACE
:=
$(SPACE)
$(SPACE)
BACKSLASH
:=
BACKSLASH
:=
\$
(
BACKSLASH
)
filter_out1
=
$(
filter-out
$(
firstword
$1
)
,
$1
)
filter_out2
=
$(
call
filter_out1,
$(
call
filter_out1,
$1
))
unixpath
=
$(
subst
\,
/,
$1
)
unixcygpath
=
/
$(
subst
:,,
$(
call
unixpath,
$1
))
# UNIX
ifeq
($(platform), unix)
EXT
?=
so
...
...
@@ -300,13 +309,13 @@ else ifeq ($(platform), emscripten)
# Windows MSVC 2003 Xbox 1
else
ifeq
($(platform), xbox1_msvc2003)
TARGET
:=
$(TARGET_NAME)
_libretro_xdk1.lib
MSVCBINDIRPREFIX
=
$(XDK)
/xbox/bin/vc71
CC
=
"
$(MSVCBINDIRPREFIX)
/CL.exe"
CXX
=
"
$(MSVCBINDIRPREFIX)
/CL.exe"
LD
=
"
$(MSVCBINDIRPREFIX)
/lib.exe"
CC
=
CL.exe
CXX
=
CL.exe
LD
=
lib.exe
export
INCLUDE
:=
$(XDK)
/xbox/include
export
LIB
:=
$(XDK)
/xbox/lib
PATH
:=
$(
call
unixcygpath,
$(XDK)
/xbox/bin/vc71
)
:
$(PATH)
PSS_STYLE
:=
2
CFLAGS
+=
-D_XBOX
-D_XBOX1
CXXFLAGS
+=
-D_XBOX
-D_XBOX1
...
...
Makefile.common
View file @
1a477ecb
LIBRETRO_COMM_DIR
=
$(CORE_DIR)
/libretro-common
LIBFLAC_DIR
=
$(CORE_DIR)
/deps/libFLAC
LIBVORBIS_DIR
=
$(CORE_DIR)
/deps/libvorbis
LIBOGG_DIR
=
$(CORE_DIR)
/deps/libogg
INCFLAGS
:=
\
-I
$(CORE_DIR)
\
-I
$(
CORE_DIR)
/libretro-common
/include
\
-I
$(
LIBRETRO_COMM_DIR)
/include
\
-I
$(CORE_DIR)
/include
\
ifneq
(,$(findstring msvc2003,$(platform)))
INCFLAGS
+=
-I
$(LIBRETRO_COMM_DIR)
/include/compat/msvc
endif
SOURCES_C
:=
\
$(CORE_DIR)
/common/cl_input.c
\
$(CORE_DIR)
/common/cd_common.c
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment