mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-10 09:41:09 +00:00
windows: use target-specfic flags for gcc too (-m32/-m64). hmph..
git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@1299 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
f22eed7f57
commit
5af28b2121
2 changed files with 4 additions and 4 deletions
|
@ -48,9 +48,9 @@ STRIP = strip
|
||||||
#CPUFLAGS= -mtune=i686
|
#CPUFLAGS= -mtune=i686
|
||||||
#CPUFLAGS= -march=pentium4
|
#CPUFLAGS= -march=pentium4
|
||||||
CPUFLAGS=
|
CPUFLAGS=
|
||||||
LDFLAGS =
|
LDFLAGS = -m32 -mwindows
|
||||||
DFLAGS ?=
|
DFLAGS ?=
|
||||||
CFLAGS ?= -Wall -Wno-trigraphs
|
CFLAGS ?= -m32 -Wall -Wno-trigraphs
|
||||||
CFLAGS += $(CPUFLAGS)
|
CFLAGS += $(CPUFLAGS)
|
||||||
|
|
||||||
ifneq ($(DEBUG),0)
|
ifneq ($(DEBUG),0)
|
||||||
|
|
|
@ -46,9 +46,9 @@ WINDRES = windres
|
||||||
STRIP = strip
|
STRIP = strip
|
||||||
|
|
||||||
CPUFLAGS=
|
CPUFLAGS=
|
||||||
LDFLAGS =
|
LDFLAGS = -m64 -mwindows
|
||||||
DFLAGS ?=
|
DFLAGS ?=
|
||||||
CFLAGS ?= -Wall -Wno-trigraphs
|
CFLAGS ?= -m64 -Wall -Wno-trigraphs
|
||||||
CFLAGS += $(CPUFLAGS)
|
CFLAGS += $(CPUFLAGS)
|
||||||
|
|
||||||
ifneq ($(DEBUG),0)
|
ifneq ($(DEBUG),0)
|
||||||
|
|
Loading…
Reference in a new issue