makefiles/univ.mk
2024-12-03 20:55:52 +01:00

28 lines
558 B
Makefile

SYNC = unison
MKDIR = mkdir -p
HOME_WIN = /mnt/c/Users/anri
HOME_WSL = /home/anri
COURS_SMB = $(HOME_WSL)/troisiemeSemestre
UNIV = $(HOME_WSL)/Univ
.PHONY: java heptagon edf anglais
main:
java: TP_NUM = TP2
java:
@$(SYNC) "$(COURS_SMB)/progObjet/TPs/$(TP_NUM)" "$(UNIV)/java_tp"
heptagon: TP_NUM = TP1
heptagon:
@$(SYNC) "$(COURS_SMB)/progSynchrone/TPs/$(TP_NUM)" "$(UNIV)/ept_tp"
edf: TP_NUM = TP3
edf:
@$(SYNC) "$(COURS_SMB)/infoEmbarquee/TPs/$(TP_NUM)" "$(UNIV)/edf"
anglais:
@$(SYNC) "$(COURS_SMB)/anglais/presentation" "$(UNIV)/anglais"