mirror of
https://github.com/freedoom/freedoom.git
synced 2025-09-01 13:25:46 -04:00
rename python scripts to barenames where possible
This commit is contained in:
parent
140f01f39a
commit
6b486b6332
10 changed files with 17 additions and 17 deletions
|
@ -3,7 +3,7 @@
|
||||||
IWAD=./doom2.wad
|
IWAD=./doom2.wad
|
||||||
|
|
||||||
$(IWAD): ../lumps/playpal/playpal-base.lmp
|
$(IWAD): ../lumps/playpal/playpal-base.lmp
|
||||||
./bootstrap.py < $< > $@
|
./bootstrap < $< > $@
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
$(RM) $(IWAD)
|
$(RM) $(IWAD)
|
||||||
|
|
|
@ -56,16 +56,16 @@ all: text_strings help.png credit.png wikilrs.png wivctms.png titlepic
|
||||||
|
|
||||||
# Generate the menu and level strings
|
# Generate the menu and level strings
|
||||||
text_strings: config.py fontchars ../../lumps/dehacked/dehacked.txt
|
text_strings: config.py fontchars ../../lumps/dehacked/dehacked.txt
|
||||||
python textgen
|
./textgen
|
||||||
cp $(TEXTGEN_GRAPHIC_LUMPS) ../
|
cp $(TEXTGEN_GRAPHIC_LUMPS) ../
|
||||||
|
|
||||||
# Background for the help screen is a color shifted version of INTERPIC:
|
# Background for the help screen is a color shifted version of INTERPIC:
|
||||||
helpbg.png: ../interpic.png
|
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:
|
# Generate transparent image containing text for the HELP screen:
|
||||||
help.png: text_strings helpbg.png
|
help.png: text_strings helpbg.png
|
||||||
python smtextgen help.png 320x200 \
|
./smtextgen help.png 320x200 \
|
||||||
-background "helpbg.png" \
|
-background "helpbg.png" \
|
||||||
150,5 "file:helpttl.png" \
|
150,5 "file:helpttl.png" \
|
||||||
10,25 "Weapons" \
|
10,25 "Weapons" \
|
||||||
|
@ -123,37 +123,37 @@ help.png: text_strings helpbg.png
|
||||||
|
|
||||||
|
|
||||||
credit.png: text_strings helpbg.png credit.txt
|
credit.png: text_strings helpbg.png credit.txt
|
||||||
python smtextgen credit.png 320x200 \
|
./smtextgen credit.png 320x200 \
|
||||||
-background "helpbg.png" \
|
-background "helpbg.png" \
|
||||||
120,5 "file:freettl.png" \
|
120,5 "file:freettl.png" \
|
||||||
10,30 "include:credit.txt"
|
10,30 "include:credit.txt"
|
||||||
cp $@ ../
|
cp $@ ../
|
||||||
|
|
||||||
wikilrs_horiz.png:
|
wikilrs_horiz.png:
|
||||||
python smtextgen $@ 49x7 \
|
./smtextgen $@ 49x7 \
|
||||||
0,0 killers
|
0,0 killers
|
||||||
|
|
||||||
wikilrs.png: wikilrs_horiz.png
|
wikilrs.png: wikilrs_horiz.png
|
||||||
python rotate.py wikilrs_horiz.png 270 $@
|
./rotate wikilrs_horiz.png 270 $@
|
||||||
cp $@ ../
|
cp $@ ../
|
||||||
|
|
||||||
wivctms.png:
|
wivctms.png:
|
||||||
python smtextgen $@ 54x7 \
|
./smtextgen $@ 54x7 \
|
||||||
0,0 victims
|
0,0 victims
|
||||||
cp $@ ../
|
cp $@ ../
|
||||||
|
|
||||||
titlepic: fd1title.png fd2title.png fdmtitle.png
|
titlepic: fd1title.png fd2title.png fdmtitle.png
|
||||||
|
|
||||||
fd1title.png: text_strings ../titlepic/titlepic.png ../m_doom.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 $@ ../
|
cp $@ ../
|
||||||
|
|
||||||
fd2title.png: text_strings ../titlepic/titlepic.png ../m_doom.png
|
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 $@ ../
|
cp $@ ../
|
||||||
|
|
||||||
fdmtitle.png: ../titlepic/freedm_titlepic.png
|
fdmtitle.png: ../titlepic/freedm_titlepic.png
|
||||||
python create_caption.py $< $@
|
./create_caption $< $@
|
||||||
cp $@ ../
|
cp $@ ../
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
# SPDX-License-Identifier: BSD-3-Clause
|
# SPDX-License-Identifier: BSD-3-Clause
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
# Copyright (c) 2017 Martin Miller, Nick Zatkovich
|
# Copyright (c) 2017 Martin Miller, Nick Zatkovich
|
||||||
|
|
|
@ -5,8 +5,8 @@ COLORMAPS = colormap.lmp
|
||||||
all: $(COLORMAPS)
|
all: $(COLORMAPS)
|
||||||
cp $(COLORMAPS) ../
|
cp $(COLORMAPS) ../
|
||||||
|
|
||||||
colormap.lmp: $(PLAYPAL) colormap.py
|
colormap.lmp: $(PLAYPAL) colormap
|
||||||
./colormap.py $(PLAYPAL) > colormap.lmp
|
./colormap $(PLAYPAL) > colormap.lmp
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
$(RM) $(COLORMAPS) ../$(COLORMAPS)
|
$(RM) $(COLORMAPS) ../$(COLORMAPS)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
playpal.lmp: playpal-base.lmp playpal.py
|
playpal.lmp: playpal-base.lmp playpal
|
||||||
./playpal.py playpal-base.lmp > playpal.lmp
|
./playpal playpal-base.lmp > playpal.lmp
|
||||||
cp playpal.lmp ../
|
cp playpal.lmp ../
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue