From 864f2b990bc88bf424abd375bd609e89c7e4b432 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Thu, 7 Mar 2024 16:36:31 +0100 Subject: [PATCH] initialisation --- Projets/Makefile | 16 ++++++++++++++++ Univ/Makefile | 24 ++++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 Projets/Makefile create mode 100644 Univ/Makefile diff --git a/Projets/Makefile b/Projets/Makefile new file mode 100644 index 0000000..9bce5a1 --- /dev/null +++ b/Projets/Makefile @@ -0,0 +1,16 @@ +SYNC = unison + +WINHOME = /mnt/c/Users/anri +WSLHOME = /home/anri +SMBSRC = /mnt/y/Anri +PROJETS = $(WSLHOME)/Projets + +.PHONY: cv + +main: + +gamejam: + @$(SYNC) $(WINHOME)/Documents/$(DIR) $(PROJETS)/adBlockNot + +cv: + @$(SYNC) $(SMBSRC)/Boulot/CV $(PROJETS)/cv diff --git a/Univ/Makefile b/Univ/Makefile new file mode 100644 index 0000000..2c7a6f5 --- /dev/null +++ b/Univ/Makefile @@ -0,0 +1,24 @@ +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