mkfile 586 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. </$objtype/mkfile
  2. <config
  3. #
  4. # $(TARGETS) is the default list of things built by make.
  5. #
  6. # buildtables
  7. TARGETS=common\
  8. cropmarks\
  9. download\
  10. grabit\
  11. hardcopy\
  12. mpictures\
  13. postgif\
  14. postprint\
  15. postreverse\
  16. posttek\
  17. printfont\
  18. psencoding\
  19. psfiles\
  20. g3p9bit\
  21. p9bitpost\
  22. tcpostio\
  23. text2post\
  24. tr2post
  25. # UNIX remnants
  26. # trofftable\
  27. # picpack\
  28. # postbgi\
  29. # postdaisy\
  30. # postdmd\
  31. # postmd
  32. # postio
  33. default:V: all
  34. $TARGETS:V:
  35. cd $target
  36. mk all
  37. &:VQ:
  38. test -d $POSTBIN || mkdir $POSTBIN
  39. for (i in $TARGETS) @{
  40. echo ---- Making $target in $i ----;
  41. cd $i;
  42. mk $target
  43. }