You've already forked openshot-qt
mirror of
https://github.com/OpenShot/openshot-qt.git
synced 2026-03-02 08:56:08 -08:00
13 lines
701 B
Makefile
13 lines
701 B
Makefile
ALL: ../src/classes/openshot_rc.py
|
|
|
|
ICONS:=$(shell /usr/bin/find Humanity/ -type f -newer ../src/classes/openshot_rc.py)
|
|
ICONS+=$(shell /usr/bin/find actions/ -type f -newer ../src/classes/openshot_rc.py)
|
|
ICONS+=$(shell /usr/bin/find . -name \*-icon.svg -newer ../src/classes/openshot_rc.py)
|
|
ICONS+=$(shell /usr/bin/find . -name cursor\*.png -newer ../src/classes/openshot_rc.py)
|
|
ICONS+=$(shell /usr/bin/find . -name keyframe\*.png -newer ../src/classes/openshot_rc.py)
|
|
ICONS+=AboutLogo.png AboutLogo@2x.png openshot.svg
|
|
ICONS+=$(shell /usr/bin/find . -type f -name hw-accel\*.svg -newer ../src/classes/openshot_rc.py)
|
|
|
|
../src/classes/openshot_rc.py: openshot.qrc $(ICONS)
|
|
pyrcc5 openshot.qrc -o $@
|