mirror of
https://github.com/freedoom/freedoom.git
synced 2025-09-01 13:25:46 -04:00
11 lines
163 B
Makefile
11 lines
163 B
Makefile
# Build a fake IWAD to bootstrap deutex
|
|
|
|
IWAD=./doom2.wad
|
|
|
|
$(IWAD): ../lumps/playpal/playpal-base.lmp
|
|
./bootstrap < $< > $@
|
|
|
|
clean:
|
|
$(RM) $(IWAD)
|
|
|
|
.PHONY: clean
|