25 lines
527 B
Makefile
25 lines
527 B
Makefile
|
SYNC = unison
|
||
|
MKDIR = mkdir -p
|
||
|
|
||
|
WINHOME = /mnt/c/Users/anri
|
||
|
WSLHOME = /home/anri
|
||
|
SMBMOUNT = $(WSLHOME)/deuxiemeSemestre
|
||
|
UNIVDIR = $(WSLHOME)/Univ
|
||
|
|
||
|
.PHONY: stage tp_sys anglais_sql
|
||
|
|
||
|
main:
|
||
|
|
||
|
|
||
|
stage:
|
||
|
@$(MKDIR) $(UNIVDIR)/stage
|
||
|
@$(SYNC) $(SMBMOUNT)/stage/rapport $(UNIVDIR)/stage/rapport
|
||
|
@$(SYNC) $(SMBMOUNT)/stage/presentation $(UNIVDIR)/stage/presentation
|
||
|
|
||
|
TP_NUM = TP6
|
||
|
tp_sys:
|
||
|
@$(SYNC) $(SMBMOUNT)/prograSysAvancee/$(TP_NUM) $(UNIVDIR)/tp_sys
|
||
|
|
||
|
anglais_sql:
|
||
|
@$(SYNC) $(SMBMOUNT)/anglais/SQL $(UNIVDIR)/anglais_sql
|