All checks were successful
Publish content / push_raw (push) Successful in 35s
29 lines
780 B
Makefile
29 lines
780 B
Makefile
CLEUSB=Cle8G
|
|
|
|
COMMON_EXCLUDE=--exclude "__pycache__" --exclude ".venv/" --exclude ".git" --exclude ".gitignore" --exclude ".*" --exclude "**/*.ppm"
|
|
|
|
install:
|
|
git config core.hooksPath ./tools/git/hooks/
|
|
uv sync
|
|
|
|
update:
|
|
uv sync --upgrade
|
|
|
|
clean:
|
|
git clean -idx -e venv/ -e video/
|
|
|
|
sequence:
|
|
uv run python -m tools.scripts.new_sequence
|
|
|
|
eval:
|
|
uv run python -m tools.scripts.new_eval
|
|
|
|
rsync_cleUSB: clean
|
|
rsync -rtv -u --del --exclude "venv" ./ $(COMMON_EXCLUDE) /run/media/lafrite/$(CLEUSB)/Enseignements
|
|
rsync -rtv -u $(COMMON_EXCLUDE) ../Divers/ /run/media/lafrite/$(CLEUSB)/Divers
|
|
rsync -rtv -u $(COMMON_EXCLUDE) ../Notes/ /run/media/lafrite/$(CLEUSB)/Notes
|
|
# rsync -rtv -u $(COMMON_EXCLUDE) ../Productions\ Eleves/ /run/media/lafrite/$(CLEUSB)/Productions
|
|
|
|
|
|
.PHONY:
|