mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-09 01:01:07 +00:00
Make Makefile.darwin consistent with Makefile
git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@390 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
30c6c91c0f
commit
a892a57873
1 changed files with 11 additions and 13 deletions
|
@ -3,13 +3,18 @@
|
|||
# You need the SDL library fully installed.
|
||||
# "make DEBUG=1" to build a debug client.
|
||||
# "make SDL_CONFIG=/path/to/sdl-config" for unusual SDL installations.
|
||||
# "make SDLNET=1" to use SDL_net (not recommended) instead of platform
|
||||
# specific code.
|
||||
#
|
||||
# Build objects are separate from those of codeblocks for now
|
||||
# (we aren't using codeblocks).
|
||||
# "make SDLNET=1" to use SDL_net (not recommended)
|
||||
# instead of platform specific code.
|
||||
# Build objects are separate from those of codeblocks
|
||||
|
||||
# ============================================================================
|
||||
### Enable/Disable codecs for streaming music support
|
||||
#
|
||||
# OGG (vorbis) playback requires libvorbis and libogg
|
||||
# MP3 playback requires libmad
|
||||
|
||||
USE_CODEC_WAVE=yes
|
||||
USE_CODEC_MP3=yes
|
||||
USE_CODEC_VORBIS=yes
|
||||
|
||||
# ============================================================================
|
||||
# Helper functions
|
||||
|
@ -17,13 +22,6 @@
|
|||
|
||||
check_gcc = $(shell if echo | $(CC) $(1) -S -o /dev/null -xc - > /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi;)
|
||||
|
||||
# ============================================================================
|
||||
|
||||
# Enable/disable codecs for streaming music support:
|
||||
USE_CODEC_WAVE=yes
|
||||
USE_CODEC_MP3=yes
|
||||
USE_CODEC_VORBIS=yes
|
||||
|
||||
DEBUG ?= 0
|
||||
SDLNET ?= 0
|
||||
|
||||
|
|
Loading…
Reference in a new issue