freedoom/bootstrap/Makefile
RjY f6ea500080 bootstrap: hook into build system
- add bootstrap/Makefile to generate/cleanup bootstrap/doom2.wad
- call bootstrap/Makefile from main Makefile as appropriate
- delete bootstrap/doom2.wad, add bootstrap/.gitignore
2015-12-03 21:22:42 +00:00

11 lines
173 B
Makefile

# Build a fake IWAD to bootstrap deutex
IWAD=./doom2.wad
$(IWAD): ../lumps/cph/misc-lumps/playpal-base.lmp
./bootstrap.py < $< > $@
clean:
rm -f $(IWAD)
.PHONY: clean