26 lines
714 B
Markdown
26 lines
714 B
Markdown
# MakeFile-template EN
|
|
a simple make file template
|
|
|
|
place it into a folder containing two others folder one named src and one named objs
|
|
* objs will contain .o files
|
|
* src will contains your sources
|
|
|
|
the result of a build is a file call run inside the makefile folder
|
|
|
|
you can crosscompiler for windows by using
|
|
```make windows```
|
|
the resulting file will be called run.exe
|
|
|
|
# MakeFile-template FR
|
|
un makefile simple pour un peut pret tout
|
|
|
|
il faut le mettre dans un dossier avec 2 sous dossier
|
|
* objs qui contiendra les .o
|
|
* src qui contiendra vos sources en cpp
|
|
|
|
la comande make va crée un fichier run a la racine
|
|
|
|
vous pouvez aussi compiler pour windows avec
|
|
```make windows```
|
|
le resultat sera appler run.exe
|