mirror of
https://github.com/freedoom/freedoom.git
synced 2025-09-02 07:25:45 -04:00
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:
parent
88cdc36b12
commit
f6ea500080
4 changed files with 14 additions and 0 deletions
11
bootstrap/Makefile
Normal file
11
bootstrap/Makefile
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue