mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-10 07:12:07 +00:00
Spelling
This commit is contained in:
parent
35493a49b4
commit
7358bf50e9
1 changed files with 4 additions and 4 deletions
8
Makefile
8
Makefile
|
@ -23,10 +23,10 @@
|
||||||
# Check the OS type
|
# Check the OS type
|
||||||
OSTYPE := $(shell uname -s)
|
OSTYPE := $(shell uname -s)
|
||||||
|
|
||||||
# Some plattforms call it "amd64" and some "x86_64"
|
# Some platforms call it "amd64" and some "x86_64"
|
||||||
ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/amd64/x86_64/)
|
ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/amd64/x86_64/)
|
||||||
|
|
||||||
# Refuse all other plattforms as a firewall against PEBKAC
|
# Refuse all other platforms as a firewall against PEBKAC
|
||||||
# (You'll need some #ifdef for your unsupported plattform!)
|
# (You'll need some #ifdef for your unsupported plattform!)
|
||||||
ifneq ($(ARCH),i386)
|
ifneq ($(ARCH),i386)
|
||||||
ifneq ($(ARCH),x86_64)
|
ifneq ($(ARCH),x86_64)
|
||||||
|
@ -52,8 +52,8 @@ CC := gcc
|
||||||
# -fomit-frame-pointer since the framepointer is mostly
|
# -fomit-frame-pointer since the framepointer is mostly
|
||||||
# useless for debugging Quake II and slows things down.
|
# useless for debugging Quake II and slows things down.
|
||||||
#
|
#
|
||||||
# -g to build allways with debug symbols. Please do not
|
# -g to build always with debug symbols. Please DO NOT
|
||||||
# change this, since it's our only chance to debug this
|
# CHANGE THIS, since it's our only chance to debug this
|
||||||
# crap when random crashes happen!
|
# crap when random crashes happen!
|
||||||
#
|
#
|
||||||
# -MMD to generate header dependencies.
|
# -MMD to generate header dependencies.
|
||||||
|
|
Loading…
Reference in a new issue