makefiles/univ.mk

28 lines
540 B
Makefile
Raw Normal View History

2024-03-07 16:36:31 +01:00
SYNC = unison
MKDIR = mkdir -p
2024-04-15 16:32:31 +02:00
HOME_WIN = /mnt/c/Users/anri
HOME_WSL = /home/anri
COURS_SMB = $(HOME_WSL)/deuxiemeSemestre
UNIV = $(HOME_WSL)/Univ
2024-04-15 16:32:31 +02:00
2024-03-07 16:36:31 +01:00
2024-03-22 11:31:47 +01:00
.PHONY: stage sys_tp anglais_sql gla_projet
2024-03-07 16:36:31 +01:00
main:
stage:
2024-04-29 20:41:53 +02:00
@$(MKDIR) "$(UNIV)/stage"
2024-07-09 18:04:49 +02:00
@$(SYNC) "$(COURS_SMB)/stage/documents" "$(UNIV)/stage"
2024-03-07 16:36:31 +01:00
2024-07-09 18:04:49 +02:00
TP_NUM = TP11
2024-03-22 11:31:47 +01:00
sys_tp:
2024-04-29 20:41:53 +02:00
@$(SYNC) "$(COURS_SMB)/prograSysAvancee/$(TP_NUM)" "$(UNIV)/sys_tp"
2024-03-07 16:36:31 +01:00
anglais_sql:
2024-04-29 20:41:53 +02:00
@$(SYNC) "$(COURS_SMB)/anglais/SQL" "$(UNIV)/anglais_sql"
2024-03-22 11:31:47 +01:00
gla_projet:
2024-04-29 20:41:53 +02:00
@$(SYNC) "$(HOME_WIN)/Documents/gla" "$(UNIV)/gla_projet"