You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
631 B
40 lines
631 B
7 years ago
|
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>
|
||
|
```
|
||
|
|