mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 23:32:04 +00:00
9c1fa19dd2
the DEHSUPP compiler is gone now. Unlike XLATCC I'm using FScanner though. A fully featured parser seems like overkill for this simple text file. SVN r840 (trunk)
21 lines
416 B
Text
21 lines
416 B
Text
MAKEWAD=../tools/makewad/makewad
|
|
|
|
ifneq ($(MAKECMDGOALS),clean)
|
|
include Makefile2
|
|
endif
|
|
ifeq ($(findstring msys,$(shell sh --version 2>nul)),msys)
|
|
export OSTYPE=msys
|
|
endif
|
|
|
|
wadmake: zdoom.lst $(MAKEWAD).exe
|
|
$(MAKEWAD) -make wadmake zdoom.lst
|
|
|
|
clean:
|
|
ifeq ($(OSTYPE),msys)
|
|
rm -f wadmake zdoom.pk3
|
|
else
|
|
del /q /f wadmake zdoom.pk3 2>nul
|
|
endif
|
|
|
|
../tools/makewad/makewad.exe:
|
|
$(MAKE) -C ../tools/makewad -f Makefile
|