Advertisement
Guest User

Untitled

a guest
Sep 20th, 2014
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. .OBJDIR A path to the directory where the targets are built. Its
  2. value is determined by trying to chdir(2) to the follow‐
  3. ing directories in order and using the first match:
  4.  
  5. 1. ${MAKEOBJDIRPREFIX}${.CURDIR}
  6.  
  7. (Only if ‘MAKEOBJDIRPREFIX’ is set in the environ‐
  8. ment or on the command line.)
  9.  
  10. 2. ${MAKEOBJDIR}
  11.  
  12.  
  13. 6. ${.CURDIR}
  14.  
  15. program : a.o b.o c.o
  16. cc a.o b.o c.o -o program
  17.  
  18. a.o b.o c.o : defs.h
  19. a.o : a.c
  20. cc -c a.c
  21.  
  22. b.o : b.c
  23. cc -c b.c
  24.  
  25. c.o : c.c
  26. cc -c c.c
  27.  
  28. manual.html: manual.css
  29. manual.html: a.c b.c c.c defs.h
  30. manualtool -c manual.css -o manual.html a.c b.c c.c defs.h
  31.  
  32. program : a.o b.o c.o
  33. cc ${.ALLSRC} -o program
  34.  
  35. a.o b.o c.o : defs.h
  36. a.o : a.c
  37. cc -c ${.ALLSRC:M*.c}
  38.  
  39. b.o : b.c
  40. cc -c ${.ALLSRC:M*.c}
  41.  
  42. c.o : c.c
  43. cc -c ${.ALLSRC:M*.c}
  44.  
  45. manual.html: manual.css
  46. manual.html: a.c b.c c.c defs.h
  47. manualtool -c ${.ALLSRC:M*.css} -o manual.html ${.ALLSRC:N*.css}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement