Mercurial > SDL_sound_CoreAudio
comparison Makefile @ 35:36f27ef8bebe
Added AIFF support.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Thu, 20 Sep 2001 07:53:59 +0000 |
parents | 530fa59d5db9 |
children | f7a792fdf7a4 |
comparison
equal
deleted
inserted
replaced
34:938ef560c7bf | 35:36f27ef8bebe |
---|---|
82 #-----------------------------------------------------------------------------# | 82 #-----------------------------------------------------------------------------# |
83 use_decoder_raw := true | 83 use_decoder_raw := true |
84 use_decoder_mp3 := false | 84 use_decoder_mp3 := false |
85 use_decoder_voc := true | 85 use_decoder_voc := true |
86 use_decoder_wav := true | 86 use_decoder_wav := true |
87 use_decoder_aiff := true | |
87 use_decoder_ogg := true | 88 use_decoder_ogg := true |
88 | 89 |
89 #-----------------------------------------------------------------------------# | 90 #-----------------------------------------------------------------------------# |
90 # Set to "true" if you'd like to build a DLL. Set to "false" otherwise. | 91 # Set to "true" if you'd like to build a DLL. Set to "false" otherwise. |
91 #-----------------------------------------------------------------------------# | 92 #-----------------------------------------------------------------------------# |
254 endif | 255 endif |
255 | 256 |
256 ifeq ($(strip $(use_decoder_wav)),true) | 257 ifeq ($(strip $(use_decoder_wav)),true) |
257 MAINSRCS += decoders/wav.c | 258 MAINSRCS += decoders/wav.c |
258 CFLAGS += -DSOUND_SUPPORTS_WAV | 259 CFLAGS += -DSOUND_SUPPORTS_WAV |
260 endif | |
261 | |
262 ifeq ($(strip $(use_decoder_aiff)),true) | |
263 MAINSRCS += decoders/aiff.c | |
264 CFLAGS += -DSOUND_SUPPORTS_AIFF | |
259 endif | 265 endif |
260 | 266 |
261 ifeq ($(strip $(use_decoder_ogg)),true) | 267 ifeq ($(strip $(use_decoder_ogg)),true) |
262 MAINSRCS += decoders/ogg.c | 268 MAINSRCS += decoders/ogg.c |
263 CFLAGS += -DSOUND_SUPPORTS_OGG | 269 CFLAGS += -DSOUND_SUPPORTS_OGG |
368 @echo "ASM flag : $(use_asm)" | 374 @echo "ASM flag : $(use_asm)" |
369 @echo "SDL_sound version : $(VERFULL)" | 375 @echo "SDL_sound version : $(VERFULL)" |
370 @echo "Building DLLs : $(build_dll)" | 376 @echo "Building DLLs : $(build_dll)" |
371 @echo "Install prefix : $(install_prefix)" | 377 @echo "Install prefix : $(install_prefix)" |
372 @echo "Supports .WAV : $(use_decoder_wav)" | 378 @echo "Supports .WAV : $(use_decoder_wav)" |
379 @echo "Supports .AIFF : $(use_decoder_aiff)" | |
373 @echo "Supports .RAW : $(use_decoder_raw)" | 380 @echo "Supports .RAW : $(use_decoder_raw)" |
374 @echo "Supports .MP3 : $(use_decoder_mp3)" | 381 @echo "Supports .MP3 : $(use_decoder_mp3)" |
375 @echo "Supports .VOC : $(use_decoder_voc)" | 382 @echo "Supports .VOC : $(use_decoder_voc)" |
376 @echo "Supports .OGG : $(use_decoder_ogg)" | 383 @echo "Supports .OGG : $(use_decoder_ogg)" |
377 | 384 |