parent
d31a2ff45b
commit
18f41d0ca5
@ -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}
|
||||
|
@ -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 <projet>
|
||||
```
|
||||
|
||||
Pour supprimer tout les projets
|
||||
```bash
|
||||
$ make clean
|
||||
```
|
||||
|
||||
Pour supprimer un projet
|
||||
```bash
|
||||
$ make clean-<projet>
|
||||
```
|
||||
|
Loading…
Reference in new issue