mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-24 05:01:41 +00:00
- Changed the Makefiles that are used by both Linux and MinGW so that msys
detection occurs only if $OS is Windows_NT. Otherwise, spurious nul files are created when compiling on Linux. SVN r878 (trunk)
This commit is contained in:
parent
935764e8c1
commit
de485ec662
8 changed files with 23 additions and 27 deletions
|
@ -1,3 +1,8 @@
|
|||
April 3, 2008
|
||||
- Changed the Makefiles that are used by both Linux and MinGW so that msys
|
||||
detection occurs only if $OS is Windows_NT. Otherwise, spurious nul files
|
||||
are created when compiling on Linux.
|
||||
|
||||
April 3, 2008 (Changes by Graf Zahl)
|
||||
- Fixed: The minimum parameter count for ACS_Execute and ACS_ExecuteAlways for
|
||||
DECORATE was wrong (2 instead of 1.)
|
||||
|
|
|
@ -3,9 +3,9 @@
|
|||
CMD=0
|
||||
ifeq (Windows_NT,$(OS))
|
||||
CMD=1
|
||||
endif
|
||||
ifeq ($(findstring msys,$(shell sh --version 2>nul)),msys)
|
||||
CMD=0
|
||||
ifeq ($(findstring msys,$(shell sh --version 2>nul)),msys)
|
||||
CMD=0
|
||||
endif
|
||||
endif
|
||||
|
||||
STATICLIB = libsnes_spc.a
|
||||
|
|
|
@ -50,10 +50,6 @@
|
|||
|
||||
// EXTERNAL DATA DECLARATIONS ----------------------------------------------
|
||||
|
||||
#ifdef _WIN32
|
||||
extern UINT mididevice;
|
||||
#endif
|
||||
|
||||
// PRIVATE DATA DEFINITIONS ------------------------------------------------
|
||||
|
||||
static const BYTE CtrlTranslate[15] =
|
||||
|
|
|
@ -1,10 +1,9 @@
|
|||
ifeq (Windows_NT,$(OS))
|
||||
WIN=1
|
||||
WINCMD=1
|
||||
endif
|
||||
ifeq ($(findstring msys,$(shell sh --version 2>nul)),msys)
|
||||
WIN=1
|
||||
WINCMD=0
|
||||
ifeq ($(findstring msys,$(shell sh --version 2>nul)),msys)
|
||||
WINCMD=0
|
||||
endif
|
||||
endif
|
||||
|
||||
ifeq (1,$(WIN))
|
||||
|
|
|
@ -1,10 +1,9 @@
|
|||
ifeq (Windows_NT,$(OS))
|
||||
WIN=1
|
||||
WINCMD=1
|
||||
endif
|
||||
ifeq ($(findstring msys,$(shell sh --version 2>nul)),msys)
|
||||
WIN=1
|
||||
WINCMD=0
|
||||
ifeq ($(findstring msys,$(shell sh --version 2>nul)),msys)
|
||||
WINCMD=0
|
||||
endif
|
||||
endif
|
||||
|
||||
ifeq (1,$(WIN))
|
||||
|
|
|
@ -1,10 +1,9 @@
|
|||
ifeq (Windows_NT,$(OS))
|
||||
WIN=1
|
||||
WINCMD=1
|
||||
endif
|
||||
ifeq ($(findstring msys,$(shell sh --version 2>nul)),msys)
|
||||
WIN=1
|
||||
WINCMD=0
|
||||
ifeq ($(findstring msys,$(shell sh --version 2>nul)),msys)
|
||||
WINCMD=0
|
||||
endif
|
||||
endif
|
||||
|
||||
ifeq (1,$(WIN))
|
||||
|
|
|
@ -1,10 +1,9 @@
|
|||
ifeq (Windows_NT,$(OS))
|
||||
WIN=1
|
||||
WINCMD=1
|
||||
endif
|
||||
ifeq ($(findstring msys,$(shell sh --version 2>nul)),msys)
|
||||
WIN=1
|
||||
WINCMD=0
|
||||
ifeq ($(findstring msys,$(shell sh --version 2>nul)),msys)
|
||||
WINCMD=0
|
||||
endif
|
||||
endif
|
||||
|
||||
ifeq (1,$(WIN))
|
||||
|
|
|
@ -1,10 +1,9 @@
|
|||
ifeq (Windows_NT,$(OS))
|
||||
WIN=1
|
||||
WINCMD=1
|
||||
endif
|
||||
ifeq ($(findstring msys,$(shell sh --version 2>nul)),msys)
|
||||
WIN=1
|
||||
WINCMD=0
|
||||
ifeq ($(findstring msys,$(shell sh --version 2>nul)),msys)
|
||||
WINCMD=0
|
||||
endif
|
||||
endif
|
||||
|
||||
CC = gcc
|
||||
|
|
Loading…
Reference in a new issue