mirror of
https://github.com/evilsocket/opensnitch.git
synced 2025-03-04 16:44:46 +01:00

rename, remove unused targets trigger targets only when relevant files actually are changed git: do not track files which are generated during make github actions fix to not rely on a pre-built ui.pb.go
17 lines
318 B
Makefile
17 lines
318 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
|
|
|
|
translations:
|
|
@cd i18n ; make
|
|
|
|
deps:
|
|
@pip3 install -r requirements.txt
|
|
|
|
clean:
|
|
@rm -rf *.pyc
|
|
@rm -rf opensnitch/resources_rc.py
|