import work from year 2016-2017

This commit is contained in:
Benjamin Bertrand
2017-06-16 09:49:23 +03:00
commit 7da91996d2
5354 changed files with 505520 additions and 0 deletions

17
Makefile Normal file
View File

@@ -0,0 +1,17 @@
SSH_CONF=Embrevade
SSH_TARGET_DIR=/var/docker/raw.opytex.org/www/
SRC_EXCLUDE=--exclude 'Archive' --exclude 'tools/' --exclude ".git" --exclude ".gitignore" --exclude "__pycache__" --exclude "config.py" --exclude "Divers" --exclude "reflections" --exclude "Notes" --exclude "notes" --exclude ".*"
ssh_upload:
scp -r $(OUTPUTDIR)/* $(SSH_CONF):$(SSH_TARGET_DIR)
rsync_upload:
rsync -e "ssh" -P -rvzc --delete $(SRC_EXCLUDE) $(CURDIR)/ $(SSH_CONF):$(SSH_TARGET_DIR) --cvs-exclude
rsync_cleUSB:
rsync --progress --modify-window=1 --update --recursive --times --del ./ /run/media/lafrite/CLE32_FAT
rsync -av --del ./ /run/media/lafrite/Cle32_ext4
.PHONY: