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
|
||||
*.out
|
||||
*.elf
|
||||
|
||||
*.pdf
|
||||
|
||||
|
|
4
Makefile
4
Makefile
|
@ -12,8 +12,8 @@ OBJETS = $(patsubst %.c,%.o,$(notdir $(SOURCES)))
|
|||
CFLAGS = -std=gnu11 -pedantic
|
||||
LDFLAGS =
|
||||
|
||||
EXE = projet
|
||||
EXE_EXT = out
|
||||
EXE = ordonnanceur
|
||||
EXE_EXT = elf
|
||||
|
||||
ARCHIVE = kennel
|
||||
PDF_DIR = report
|
||||
|
|
4
README
4
README
|
@ -6,12 +6,12 @@ Compilation
|
|||
|
||||
make
|
||||
|
||||
Ce qui créer l'exécutable `projet.out`.
|
||||
Ce qui créer l'exécutable `ordonnanceur.elf`.
|
||||
|
||||
Lancement
|
||||
---------
|
||||
|
||||
./projet.out
|
||||
./ordonnanceur.elf
|
||||
|
||||
Info
|
||||
----
|
||||
|
|
Reference in a new issue