2024-09-15 16:43:44 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2024 Simon Howard
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify it
|
|
|
|
# under the terms of the GNU General Public License as published by the
|
|
|
|
# Free Software Foundation; either version 2 of the License, or (at your
|
|
|
|
# option) any later version. This program is distributed in the hope that
|
|
|
|
# it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
|
|
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
#
|
|
|
|
|
|
|
|
export SDL_VIDEODRIVER = dummy
|
|
|
|
|
|
|
|
SOURCE_PORT_NAME = chocolate-doom
|
|
|
|
SOURCE_PORT := $(shell which $(SOURCE_PORT_NAME) || echo missing_source_port)
|
2024-09-15 17:33:47 +00:00
|
|
|
DOOMOPTS = -mb 24 -nodraw -noblit -nosound \
|
2024-09-15 16:43:44 +00:00
|
|
|
-noautoload -nogui -nograbmouse -nofullscreen
|
|
|
|
|
|
|
|
ALL_DEMOS = $(patsubst %,demos/%,$(shell cat demos.txt))
|
|
|
|
OUTPUTS = $(subst .lmp,.txt,$(subst demos/,output/,$(ALL_DEMOS)))
|
|
|
|
UNZIPOPTS = -L -o
|
|
|
|
|
|
|
|
check: expected output
|
|
|
|
diff -x .gitignore -u -r expected output
|
|
|
|
@echo all tests passed
|
|
|
|
|
|
|
|
output: $(OUTPUTS)
|
|
|
|
|
|
|
|
missing_source_port:
|
|
|
|
@echo "Failed to find" $(SOURCE_PORT_NAME) "in PATH."
|
|
|
|
@echo "To specify the path explicitly:"
|
|
|
|
@echo " make SOURCE_PORT=/path/to/$(SOURCE_PORT_NAME)"
|
|
|
|
@echo "Or to search for a different source port:"
|
|
|
|
@echo " make SOURCE_PORT_NAME=lemon-doom"
|
|
|
|
@false
|
|
|
|
|
|
|
|
.rules: makerules
|
|
|
|
./makerules $@
|
2023-10-05 23:21:47 +00:00
|
|
|
|
|
|
|
extract/%:
|
2024-09-15 16:43:44 +00:00
|
|
|
unzip $(UNZIPOPTS) -d extract $< $(notdir $@)
|
2023-10-14 18:09:07 +00:00
|
|
|
@touch $@
|
2023-10-05 23:21:47 +00:00
|
|
|
|
|
|
|
extract/av.wad: pwads/av_new.zip
|
|
|
|
extract/cyber110.wad: pwads/cydreams.zip
|
|
|
|
extract/cyber110.deh: pwads/cydreams.zip
|
|
|
|
extract/d2twid.wad: pwads/d2twid.zip
|
|
|
|
extract/eternall.wad: pwads/eternal.zip
|
|
|
|
extract/hr.wad: pwads/hr.zip
|
|
|
|
extract/hr2final.wad: pwads/hr2final.zip
|
|
|
|
extract/mm.wad: pwads/mm_allup.zip
|
|
|
|
extract/mm2.wad: pwads/mm2.zip
|
|
|
|
extract/pl2.wad: pwads/pl2.zip
|
|
|
|
|
|
|
|
clean:
|
2024-09-15 16:43:44 +00:00
|
|
|
rm -f extract/*.wad
|
|
|
|
rm -rf output/*
|
|
|
|
rm -f .rules
|
2019-11-11 23:17:57 +00:00
|
|
|
|
2024-09-15 16:43:44 +00:00
|
|
|
include .rules
|