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
This commit is contained in:
RjY 2014-04-09 21:25:27 +01:00
parent 88cdc36b12
commit f6ea500080
4 changed files with 14 additions and 0 deletions

11
bootstrap/Makefile Normal file
View file

@ -0,0 +1,11 @@
# 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