mirror of
https://github.com/freedoom/freedoom.git
synced 2025-09-04 13:25:47 -04:00
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.
12 lines
221 B
Makefile
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
|