Dépendances pour le fichier CSS
This commit is contained in:
parent
94189dbe09
commit
09bbc4e5f5
11
makefile
11
makefile
@ -17,11 +17,16 @@ CSS_PATCH_AJOUT_MENU = bicolore_ajout_menu.patch
|
|||||||
CSS_NOM = defaut.css
|
CSS_NOM = defaut.css
|
||||||
TITRE = Titre par défaut
|
TITRE = Titre par défaut
|
||||||
ACCUEIL = Accueil - $(TITRE)
|
ACCUEIL = Accueil - $(TITRE)
|
||||||
|
## facultatives
|
||||||
|
MENU = menu.html
|
||||||
## utiles pour le makefile
|
## utiles pour le makefile
|
||||||
|
ifndef $(MENU)
|
||||||
|
dependances_css = style/$(CSS_DEFAUT)
|
||||||
|
else
|
||||||
|
dependances_css = style/$(CSS_DEFAUT) style/$(CSS_PATCH_AJOUT_MENU)
|
||||||
|
endif
|
||||||
dependances_index = entete.html enqueue.html
|
dependances_index = entete.html enqueue.html
|
||||||
PROG_ECHO = `which echo`
|
PROG_ECHO = `which echo`
|
||||||
## facultatives
|
|
||||||
#MENU = menu.html
|
|
||||||
|
|
||||||
# création de tous les fichiers
|
# création de tous les fichiers
|
||||||
all: test index.html
|
all: test index.html
|
||||||
@ -41,7 +46,7 @@ test:
|
|||||||
@$(PROG_ECHO) -e "\t…terminé."
|
@$(PROG_ECHO) -e "\t…terminé."
|
||||||
|
|
||||||
# création du fichier CSS
|
# création du fichier CSS
|
||||||
css:
|
css: $(dependances_css)
|
||||||
@$(PROG_ECHO) -e "Création du fichier CSS…"
|
@$(PROG_ECHO) -e "Création du fichier CSS…"
|
||||||
@cp style/$(CSS_DEFAUT) $(DESTINATION)/$(CSS_NOM)
|
@cp style/$(CSS_DEFAUT) $(DESTINATION)/$(CSS_NOM)
|
||||||
$(if $(MENU), @patch -u -p0 $(DESTINATION)/$(CSS_NOM) style/$(CSS_PATCH_AJOUT_MENU))
|
$(if $(MENU), @patch -u -p0 $(DESTINATION)/$(CSS_NOM) style/$(CSS_PATCH_AJOUT_MENU))
|
||||||
|
Loading…
Reference in New Issue
Block a user