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- +``` +