Advertisement
Guest User

Untitled

a guest
Jan 26th, 2020
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. all: main
  2.  
  3. main: main.o swap.o
  4. gcc -o main main.o swap.o -ansi -pedantic -Werror
  5.  
  6. main.o: main.c
  7. gcc main.c -o main.o -c -ansi -pedantic -Werror
  8.  
  9. swap.o: swap.c
  10. gcc swap.c -o swap.o -c -ansi -pedantic -Werror
  11.  
  12. clean:
  13. rm main.o swap.o
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement