mirror of
https://github.com/evilsocket/opensnitch.git
synced 2025-03-04 16:44:46 +01:00
18 lines
386 B
Makefile
18 lines
386 B
Makefile
all: opensnitch/resources_rc.py
|
|
|
|
install:
|
|
@pip3 install --upgrade .
|
|
|
|
opensnitch/resources_rc.py: translations deps
|
|
@pyrcc5 -o opensnitch/resources_rc.py opensnitch/res/resources.qrc
|
|
sed -i 's/^import ui_pb2/from . import ui_pb2/' opensnitch/ui_pb2*
|
|
|
|
translations:
|
|
@cd i18n ; make
|
|
|
|
deps:
|
|
@pip3 install -r requirements.txt
|
|
|
|
clean:
|
|
@rm -rf *.pyc
|
|
@rm -rf opensnitch/resources_rc.py
|