Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. main.exe : main.o graphique.o robot.o carte.o
  2. gcc main.o graphique.o robot.o carte.o -o main.exe
  3. main.o : main.c fonctions.h
  4. gcc -c main.c
  5. graphique.o : graphique.c fonctions.h
  6. gcc -c graphique.c
  7. robot.o : robot.c fonctions.h
  8. gcc -c robot.c
  9. carte.o : carte.c fonctions.h
  10. gcc -c carte.c
  11. clean :
  12. rm *.o main.exe
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement