freedoom/lumps/playpal/Makefile
Mike Swanson 383854430b automatically generate a GIMP-compatible palette file
Either `make gimp-palette` or `make doom.gpl` will convert the playpal
lump into a file that can be imported into GIMP for paletted image
modes.
2019-09-19 15:17:52 -07:00

12 lines
221 B
Makefile

playpal.lmp: playpal-base.lmp playpal
./playpal playpal-base.lmp > playpal.lmp
cp playpal.lmp ../
doom.gpl: playpal-base.lmp
./gen-gimp-palette
clean:
$(RM) playpal.lmp ../playpal.lmp
$(RM) doom.gpl
.PHONY: clean