Advertisement
Guest User

Untitled

a guest
Nov 1st, 2014
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. all: hello
  2. build: hello
  3.  
  4. hello: hello.s
  5. gcc -s hello.s -o hello
  6.  
  7. run: hello
  8. ./hello
  9.  
  10. clean:
  11. rm -f hello
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement