diff --git a/.gitignore b/.gitignore index fe5cc77..45d220b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ *.o -*.out +*.elf *.pdf diff --git a/Makefile b/Makefile index beea05c..19a701c 100644 --- a/Makefile +++ b/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 diff --git a/README b/README index 3a4922f..66b3165 100644 --- a/README +++ b/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 ----