Guest User

Untitled

a guest
Oct 23rd, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. // makefile - must include the tabs
  2. all:
  3. gcc test.c
  4.  
  5. clean:
  6. del *.o
  7.  
  8. ////////
  9.  
  10. in cmd u can use it like "make" which defaults to the all section, "make clean" will go to the clean section, etc
  11.  
  12. then create a batch file that just says:
  13.  
  14. make
  15. pause
  16.  
  17. and you can double click it to compile
Add Comment
Please, Sign In to add comment