Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
SRB2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
STJr
SRB2
Commits
37c647c0
Commit
37c647c0
authored
4 years ago
by
James R.
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'origin/master' into next
parents
e340d74e
8d9b16df
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/Makefile
+54
-1
54 additions, 1 deletion
src/Makefile
src/Makefile.cfg
+4
-5
4 additions, 5 deletions
src/Makefile.cfg
with
58 additions
and
6 deletions
src/Makefile
+
54
−
1
View file @
37c647c0
...
...
@@ -56,7 +56,8 @@
# Compile with GCC 4.6x version, add 'GCC46=1'
# Compile a profile version, add 'PROFILEMODE=1'
# Compile a debug version, add 'DEBUGMODE=1'
# Compile with extra warnings, add 'WARNINGMODE=1'
# Compile with less warnings, add 'RELAXWARNINGS=1'
# Generate compiler errors for most compiler warnings, add 'ERRORMODE=1'
# Compile without NASM's tmap.nas, add 'NOASM=1'
# Compile without 3D hardware support, add 'NOHW=1'
# Compile without 3D sound support, add 'NOHS=1'
...
...
@@ -80,6 +81,58 @@
#
#############################################################################
ALL_SYSTEMS
=
\
PANDORA
\
LINUX64
\
MINGW64
\
HAIKU
\
DUMMY
\
DJGPPDOS
\
MINGW
\
UNIX
\
LINUX
\
SOLARIS
\
FREEBSD
\
MACOSX
\
SDL
\
# check for user specified system
ifeq
(,$(filter $(ALL_SYSTEMS),$(.VARIABLES)))
ifeq
($(OS),Windows_NT)
# all windows are Windows_NT...
$(info
Detected
a
Windows
system,
compiling
for
32-bit
MinGW
SDL2...)
# go for a 32-bit sdl mingw exe by default
MINGW
=
1
SDL
=
1
WINDOWSHELL
=
1
else
# if you on the *nix
system
:=
$(
shell
uname
-s
)
ifeq
($(system),Linux)
new_system
=
LINUX
else
$(
error
\
Could not automatically detect your system,
\
try specifying a system manually
)
endif
ifeq
($(shell getconf LONG_BIT),64)
system
+=
64-bit
new_system
:=
$(
new_system
)
64
endif
$(info
Detected
$(system)
($(new_system))...)
$(new_system)
=
1
endif
endif
# SRB2 data files
D_DIR
?=
../bin/Resources
D_FILES
=
$(
D_DIR
)
/srb2.pk3
\
...
...
This diff is collapsed.
Click to expand it.
src/Makefile.cfg
+
4
−
5
View file @
37c647c0
...
...
@@ -48,7 +48,9 @@ endif
# Automatically set version flag, but not if one was manually set
ifeq
(,$(filter GCC%,$(.VARIABLES)))
ifneq
(,$(findstring gcc,$(shell $(CC) --version)))
# if it's GCC
version
:=
$(
shell
$(
CC
)
--version
)
# check if this is in fact GCC
ifneq
(,$(or $(findstring gcc,$(version)),$(findstring GCC,$(version))))
version
:=
$(
shell
$(
CC
)
-dumpversion
)
# Turn version into words of major, minor
...
...
@@ -208,10 +210,7 @@ WFLAGS=-Wall
ifndef
GCC295
#WFLAGS+=-Wno-packed
endif
ifdef
ERRORMODE
WARNINGMODE
=
1
endif
ifdef
WARNINGMODE
ifndef
RELAXWARNINGS
WFLAGS
+=
-W
#WFLAGS+=-Wno-sign-compare
ifndef
GCC295
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment