mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-06 21:12:12 +00:00
2b721975dd
for FMOD Ex while at the same time removing support for FMOD 3. Be sure to update your SDKs. GCC users, be sure to do a "make cleandep && make clean" before building, or you will likely get inexplicable errors. - Fixed: If you wanted to make cleandep with MinGW, you had to specifically specify Makefile.mingw as the makefile to use. - Added a normalizer to the OPL synth. It helped bring up the volume a little, but not nearly as much as I would have liked. - Removed MIDI Mapper references. It doesn't work with the stream API, and it doesn't really exist on NT kernels, either. - Reworked music volume: Except for MIDI, all music volume is controlled through GSnd and not at the individual song level. - Removed the mididevice global variable. - Removed snd_midivolume. Now that all music uses a linear volume scale, there's no need for two separate music volume controls. - Increased snd_samplerate default up to 48000. - Added snd_format, defaulting to "PCM-16". - Added snd_speakermode, defaulting to "Auto". - Replaced snd_fpu with snd_resampler, defaulting to "Linear". - Bumped the snd_channels default up from a pitiful 12 to 32. - Changed snd_3d default to true. The new cvar snd_hw3d determines if hardware 3D support is used and default to false. - Removed the libFLAC source, since FMOD Ex has native FLAC support. - Removed the altsound code, since it was terribly gimped in comparison to the FMOD code. It's original purpose was to have been as a springboard for writing a non-FMOD sound system for Unix-y systems, but that never happened. - Finished preliminary FMOD Ex support. SVN r789 (trunk)
56 lines
1.3 KiB
Text
56 lines
1.3 KiB
Text
RELEASETARGET = zdoomgcc.exe
|
|
DEBUGTARGET = zdoomgccd.exe
|
|
|
|
all: basetools game
|
|
debug: basetools debuggame
|
|
release: basetools game
|
|
|
|
ifndef CONFIG
|
|
CONFIG=Release
|
|
endif
|
|
|
|
game: basetools ccdv.exe
|
|
@$(MAKE) -f Makefile.mingw
|
|
|
|
debuggame: basetools ccdv.exe
|
|
@$(MAKE) CONFIG=Debug -f Makefile.mingw
|
|
|
|
$(RELEASETARGET): game
|
|
$(DEBUGTARGET): debuggame
|
|
|
|
basetools: ccdv.exe
|
|
$(MAKE) -C tools/lemon
|
|
$(MAKE) -C tools/re2c
|
|
$(MAKE) -C zlib -f Makefile.mgw
|
|
$(MAKE) -C tools/makewad
|
|
$(MAKE) -C tools/dehsupp
|
|
$(MAKE) -C tools/xlatcc
|
|
$(MAKE) -C tools/fixrtext
|
|
$(MAKE) -C wadsrc -f Makefile.mgw
|
|
$(MAKE) -C jpeg-6b -f Makefile.mgw
|
|
|
|
cleanexe:
|
|
@$(MAKE) -C . -f Makefile.mingw clean
|
|
|
|
clean:
|
|
@$(MAKE) -C tools/lemon clean
|
|
@$(MAKE) -C tools/re2c clean
|
|
@$(MAKE) -C tools/dehsupp clean
|
|
@$(MAKE) -C tools/makewad clean
|
|
@$(MAKE) -C tools/xlatcc clean
|
|
@$(MAKE) -C tools/fixrtext clean
|
|
@$(MAKE) -C wadsrc -f Makefile.mgw clean
|
|
@$(MAKE) -C . -f Makefile.mingw clean
|
|
@$(MAKE) -C zlib -f Makefile.mgw clean
|
|
@$(MAKE) -C jpeg-6b -f Makefile.mgw clean
|
|
ifeq ($(findstring msys,$(shell sh --version 2>nul)),msys)
|
|
rm -f ccdv.exe
|
|
else
|
|
del /q /f ccdv.exe 2>nul
|
|
endif
|
|
|
|
cleandep:
|
|
@$(MAKE) -C . -f Makefile.mingw cleandep
|
|
|
|
ccdv.exe: ccdv-win32.c
|
|
@gcc -Os -s -nostdlib -fomit-frame-pointer -o ccdv.exe ccdv-win32.c -lkernel32 -luser32
|