Advertisement
Guest User

Untitled

a guest
Feb 13th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CMake 0.21 KB | None | 0 0
  1. prog : main.o read.o write.o tri.o
  2.     gcc main.o read.o write.o tri.o -o prog
  3.  
  4. main.o : main.c
  5.     gcc -c main.c
  6.  
  7. read.o : read.c
  8.     gcc -c read.c
  9.  
  10. write.o : write.c
  11.     gcc -c write.c
  12.  
  13. tri.o : tri.c
  14.     gcc -c tri.c
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement