mirror of
https://github.com/freedoom/freedoom.git
synced 2025-09-04 22:25:47 -04:00
- add bootstrap/Makefile to generate/cleanup bootstrap/doom2.wad - call bootstrap/Makefile from main Makefile as appropriate - delete bootstrap/doom2.wad, add bootstrap/.gitignore
11 lines
173 B
Makefile
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
|