Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.33 KB | None | 0 0
  1. .PHONY: all
  2.  
  3. all: separatefile
  4.  
  5. separatefile: separatefile.o mul_cpx_separatefile.o
  6.     gcc -o separatefile -O2 separatefile.o mul_cpx_separatefile.o
  7.  
  8. separatefile.o:
  9.     gcc -c separatefile.c mul_cpx_separatefile.h
  10.  
  11. mul_cpx_separatefile.o: mul_cpx_separatefile.c mul_cpx_separatefile.h
  12.  
  13. clean:
  14.     rm -f separatefile.o separatefile
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement