Commit 3cacbf71ea9fadd78d039fdc549f21d286540fbd
1 parent
4b723df6
Ajout des questions 4.2 et 4.3 dans le makefile
Showing
1 changed file
with
4 additions
and
1 deletions
Show diff stats
Makefile
... | ... | @@ -34,8 +34,11 @@ demostep : STEP4.1 |
34 | 34 | STEP4.1 : ${SRC}/GetUsbInfos.c bin |
35 | 35 | gcc -o ${BIN}/STEP4.1.out ${SRC}/GetUsbInfos.c ${CLIBS} ${CFLAGS} |
36 | 36 | |
37 | +STEP4.2 : ${SRC}/FourPointTwo.c bin | |
38 | + gcc -o ${BIN}/STEP4.2.out ${SRC}/FourPointTwo.c ${CLIBS} ${CFLAGS} | |
37 | 39 | |
38 | - | |
40 | +STEP4.3 : ${SRC}/FourPointThree.c bin | |
41 | + gcc -o ${BIN}/STEP4.3.out ${SRC}/FourPointThree.c ${CLIBS} ${CFLAGS} | |
39 | 42 | |
40 | 43 | obj : |
41 | 44 | @-mkdir ${OBJ} | ... | ... |