From 18f41d0ca59f74c276c5edbd01f2d0218883cb6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Tansorier?= Date: Fri, 27 Oct 2017 17:30:45 +0200 Subject: [PATCH] Add README and Makefile for latex projects --- Makefile | 15 +++++++++++++++ README | 39 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 Makefile create mode 100644 README diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..46c83a8 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +PRESENTATIONS = Logiciel_Libre +PRESENTATIONS_PDF = $(addsuffix .pdf,$(PRESENTATIONS)) + +Logiciel_Libre: Logiciel_Libre.pdf + +all: $(PRESENTATIONS) + +%.pdf: %.tex + pdflatex $< + +clean: $(addprefix clean-,$(PRESENTATIONS)) + +clean-%: + rm -f $*.{aux,nav,pdf,log,out,snm,toc} + diff --git a/README b/README new file mode 100644 index 0000000..0e03966 --- /dev/null +++ b/README @@ -0,0 +1,39 @@ +Pésentations +============ + +1. L'alternative Logiciel Libre + + + +L'alternative Logiciel Libre +---------------------------- + +_Présentation et discutions autour du logiciel libre, ces avantages, son héritage, proposez vos alternatives au logiciel propriétaire. Partageons autour du Free Software avant de partager une Free Beer !_ + +Nom du projet à compiler: **Logiciel_Libre** + + + +Compilation +=========== + +Pour construire tout les projets +```bash +$ make +``` + +Pour construire un projet +```bash +$ make +``` + +Pour supprimer tout les projets +```bash +$ make clean +``` + +Pour supprimer un projet +```bash +$ make clean- +``` +