rename python scripts to barenames where possible

This commit is contained in:
Mike Swanson 2019-09-04 19:20:19 -07:00
parent 140f01f39a
commit 6b486b6332
10 changed files with 17 additions and 17 deletions

View file

@ -3,7 +3,7 @@
IWAD=./doom2.wad
$(IWAD): ../lumps/playpal/playpal-base.lmp
./bootstrap.py < $< > $@
./bootstrap < $< > $@
clean:
$(RM) $(IWAD)

View file

@ -56,16 +56,16 @@ all: text_strings help.png credit.png wikilrs.png wivctms.png titlepic
# Generate the menu and level strings
text_strings: config.py fontchars ../../lumps/dehacked/dehacked.txt
python textgen
./textgen
cp $(TEXTGEN_GRAPHIC_LUMPS) ../
# Background for the help screen is a color shifted version of INTERPIC:
helpbg.png: ../interpic.png
python tint.py ../interpic.png '#57b9b0' helpbg.png
./tint.py ../interpic.png '#57b9b0' helpbg.png
# Generate transparent image containing text for the HELP screen:
help.png: text_strings helpbg.png
python smtextgen help.png 320x200 \
./smtextgen help.png 320x200 \
-background "helpbg.png" \
150,5 "file:helpttl.png" \
10,25 "Weapons" \
@ -123,37 +123,37 @@ help.png: text_strings helpbg.png
credit.png: text_strings helpbg.png credit.txt
python smtextgen credit.png 320x200 \
./smtextgen credit.png 320x200 \
-background "helpbg.png" \
120,5 "file:freettl.png" \
10,30 "include:credit.txt"
cp $@ ../
wikilrs_horiz.png:
python smtextgen $@ 49x7 \
./smtextgen $@ 49x7 \
0,0 killers
wikilrs.png: wikilrs_horiz.png
python rotate.py wikilrs_horiz.png 270 $@
./rotate wikilrs_horiz.png 270 $@
cp $@ ../
wivctms.png:
python smtextgen $@ 54x7 \
./smtextgen $@ 54x7 \
0,0 victims
cp $@ ../
titlepic: fd1title.png fd2title.png fdmtitle.png
fd1title.png: text_strings ../titlepic/titlepic.png ../m_doom.png
python create_caption.py ../titlepic/titlepic.png ../m_doom.png ../t_phase1.png $@
./create_caption ../titlepic/titlepic.png ../m_doom.png ../t_phase1.png $@
cp $@ ../
fd2title.png: text_strings ../titlepic/titlepic.png ../m_doom.png
python create_caption.py ../titlepic/titlepic.png ../m_doom.png ../t_phase2.png $@
./create_caption ../titlepic/titlepic.png ../m_doom.png ../t_phase2.png $@
cp $@ ../
fdmtitle.png: ../titlepic/freedm_titlepic.png
python create_caption.py $< $@
./create_caption $< $@
cp $@ ../
clean:

View file

@ -1,4 +1,4 @@
#/usr/bin/env python
#!/usr/bin/env python
# SPDX-License-Identifier: BSD-3-Clause

View file

@ -1,4 +1,4 @@
#/usr/bin/env python
#!/usr/bin/env python
# SPDX-License-Identifier: MIT
# Copyright (c) 2017 Martin Miller, Nick Zatkovich

View file

@ -5,8 +5,8 @@ COLORMAPS = colormap.lmp
all: $(COLORMAPS)
cp $(COLORMAPS) ../
colormap.lmp: $(PLAYPAL) colormap.py
./colormap.py $(PLAYPAL) > colormap.lmp
colormap.lmp: $(PLAYPAL) colormap
./colormap $(PLAYPAL) > colormap.lmp
clean:
$(RM) $(COLORMAPS) ../$(COLORMAPS)

View file

@ -1,5 +1,5 @@
playpal.lmp: playpal-base.lmp playpal.py
./playpal.py playpal-base.lmp > playpal.lmp
playpal.lmp: playpal-base.lmp playpal
./playpal playpal-base.lmp > playpal.lmp
cp playpal.lmp ../
clean: