Files
tina/help/makefile
2024-06-11 16:04:30 +02:00

10 lines
644 B
Makefile

compile:
pyrcc5 tina.qrc > tina_resources.py
install:
if [ ! -f tina_resources.py ]; then echo "pyrcc5 compilation of resources.qrc failed"; fi
if [ -f tina_resources.py -a -f ../pyrcc5/tina_resources.py-- ]; then cp ../pyrcc5/tina_resources.py-- ../pyrcc5/tina_resources.py---; fi
if [ -f tina_resources.py -a -f ../pyrcc5/tina_resources.py- ]; then cp ../pyrcc5/tina_resources.py- ../pyrcc5/tina_resources.py--; fi
if [ -f tina_resources.py -a -f ../pyrcc5/tina_resources.py ]; then cp ../pyrcc5/tina_resources.py ../pyrcc5/tina_resources.py-; fi
if [ -f tina_resources.py ]; then cp tina_resources.py ../pyrcc5/tina_resources.py; fi