retouches documentation
David Valentine

David Valentine commited on 2025-11-18 01:59:53
Showing 1 changed files, with 8 additions and 4 deletions.

... ...
@@ -4,10 +4,12 @@
4 4
 #############################################################
5 5
 # 1. argument obligatoire en ligne de commande
6 6
 #############################################################
7
-# passer le nom projet du projet à traiter
8
-# avec la variable PROJET
9
-# le projet doit être un dossier de src/
7
+# Passer le nom du projet à traiter :
8
+# avec la variable PROJET.
9
+# Le nom du projet doit correspondre avec le nom d'un dossier de ./src/
10 10
 # exemple   : $ make PROJET=proposition
11
+# remarque  : variable à spécifier pour toutes les recettes
12
+#             qui l'utilisent.
11 13
 
12 14
 #############################################################
13 15
 # variables
... ...
@@ -16,8 +18,10 @@
16 18
 SHELL := /bin/bash
17 19
 
18 20
 # Timestamp
19
-#timestamp := $(shell date +%Y-%m-%dT%H:%M:%S-05:00)
21
+# -05:00
20 22
 date := $(shell date +%Y-%m-%dT%H:%M:%S-05:00)
23
+# -04:00
24
+#date      := $(shell date +%Y-%m-%dT%H:%M:%S-04:00)
21 25
 #hash      := $(shell cat .git/refs/heads/main)
22 26
 
23 27
 # Name
24 28