ordonnanceur.elf
This commit is contained in:
parent
a44105cb5b
commit
07209452aa
3 changed files with 5 additions and 5 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,5 +1,5 @@
|
||||||
*.o
|
*.o
|
||||||
*.out
|
*.elf
|
||||||
|
|
||||||
*.pdf
|
*.pdf
|
||||||
|
|
||||||
|
|
4
Makefile
4
Makefile
|
@ -12,8 +12,8 @@ OBJETS = $(patsubst %.c,%.o,$(notdir $(SOURCES)))
|
||||||
CFLAGS = -std=gnu11 -pedantic
|
CFLAGS = -std=gnu11 -pedantic
|
||||||
LDFLAGS =
|
LDFLAGS =
|
||||||
|
|
||||||
EXE = projet
|
EXE = ordonnanceur
|
||||||
EXE_EXT = out
|
EXE_EXT = elf
|
||||||
|
|
||||||
ARCHIVE = kennel
|
ARCHIVE = kennel
|
||||||
PDF_DIR = report
|
PDF_DIR = report
|
||||||
|
|
4
README
4
README
|
@ -6,12 +6,12 @@ Compilation
|
||||||
|
|
||||||
make
|
make
|
||||||
|
|
||||||
Ce qui créer l'exécutable `projet.out`.
|
Ce qui créer l'exécutable `ordonnanceur.elf`.
|
||||||
|
|
||||||
Lancement
|
Lancement
|
||||||
---------
|
---------
|
||||||
|
|
||||||
./projet.out
|
./ordonnanceur.elf
|
||||||
|
|
||||||
Info
|
Info
|
||||||
----
|
----
|
||||||
|
|
Reference in a new issue