freedoom/lumps/colormap/Makefile
Mike Swanson 63b72dbd63 Remove Boom special colormaps.
We’re not a Boom IWAD anymore, we can get rid of these.
2017-02-21 18:43:14 -08:00

14 lines
242 B
Makefile

PLAYPAL = ../playpal/playpal-base.lmp
COLORMAPS = colormap.lmp
all: $(COLORMAPS)
cp $(COLORMAPS) ../
colormap.lmp: $(PLAYPAL) colormap.py
./colormap.py $(PLAYPAL) > colormap.lmp
clean:
rm -f $(COLORMAPS) ../$(COLORMAPS)
.PHONY: clean