makefiles/univ.mk
2024-07-09 18:04:49 +02:00

27 lines
540 B
Makefile

SYNC = unison
MKDIR = mkdir -p
HOME_WIN = /mnt/c/Users/anri
HOME_WSL = /home/anri
COURS_SMB = $(HOME_WSL)/deuxiemeSemestre
UNIV = $(HOME_WSL)/Univ
.PHONY: stage sys_tp anglais_sql gla_projet
main:
stage:
@$(MKDIR) "$(UNIV)/stage"
@$(SYNC) "$(COURS_SMB)/stage/documents" "$(UNIV)/stage"
TP_NUM = TP11
sys_tp:
@$(SYNC) "$(COURS_SMB)/prograSysAvancee/$(TP_NUM)" "$(UNIV)/sys_tp"
anglais_sql:
@$(SYNC) "$(COURS_SMB)/anglais/SQL" "$(UNIV)/anglais_sql"
gla_projet:
@$(SYNC) "$(HOME_WIN)/Documents/gla" "$(UNIV)/gla_projet"