mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-06 04:52:11 +00:00
eff7c898cf
- Fixed: StreamSong::SetVolume should check the m_stream pointer. This can happen when a TimiditySong doesn't use FMOD and outputs the sound itself. - Fixed: 'use' sector actions were using the incorrect sector on several occasions. - Added a wi_noautostartmap CVAR and a noautostartmap intermission option that force the user to manually end the 'entering level' page. SVN r70 (trunk)
22 lines
564 B
Text
22 lines
564 B
Text
MAKEWAD=../tools/makewad/makewad
|
|
XLATCC=../tools/xlatcc/xlatcc
|
|
DEHSUPP=../tools/dehsupp/dehsupp
|
|
|
|
ifneq ($(MAKECMDGOALS),clean)
|
|
include Makefile2
|
|
endif
|
|
|
|
wadmake: zdoom.lst $(MAKEWAD).exe $(XLATCC).exe $(DEHSUPP).exe
|
|
$(MAKEWAD) -make wadmake zdoom.lst
|
|
|
|
clean:
|
|
del /q /f wadmake zdoom.pk3 xlat\*.x dehsupp.lmp 2>nul
|
|
|
|
../tools/makewad/makewad.exe:
|
|
$(MAKE) -C ../tools/makewad -f Makefile.mgw
|
|
|
|
../tools/xlatcc/xlatcc.exe:
|
|
$(MAKE) -C ../tools/xlatcc -f Makefile.mgw
|
|
|
|
../tools/dehsupp/dehsupp.exe:
|
|
$(MAKE) -C ../tools/dehsupp -f Makefile.mgw
|