home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / maths / plplot / plplot_2 / sys / amiga / sksh / makelinks < prev    next >
Encoding:
Text File  |  1994-09-02  |  1.2 KB  |  31 lines

  1. #!c:sksh
  2.  
  3. #*************************************************************************
  4. # Makes links to all PLPLOT source files using the SKsh lnsoft script.
  5. #
  6. # I use soft links rather than hard links so that I can edit the original
  7. # file but (a) only end up with one copy, and (b) have the time stamp on
  8. # the link change.  If you use hard links and you change the original
  9. # file, you end up with TWO files, and the timestamp on the copy on the
  10. # tmp directory will not change (so make won't rebuild).
  11. #
  12. # There are some problems using soft links, however, including: most 
  13. # directory listers see them as directories.  I've yet to find a good 'ls'
  14. # that reports the link properly without generating enforcer hits.  Also,
  15. # they can be difficult to remove at times.  I've found that you can
  16. # always remove them from the workbench, however.
  17. #
  18. #*************************************************************************
  19.  
  20. lnsoft ../src/*.c .
  21. lnsoft ../include/*.h .
  22. lnsoft ../drivers/*.c .
  23. lnsoft ../utils/*.c .
  24. lnsoft ../examples/C/*.c .
  25. lnsoft ../sys/amiga/*.m4 .
  26. lnsoft ../sys/amiga/src/*.c .
  27. lnsoft ../sys/amiga/src/*.h .
  28. lnsoft ../sys/amiga/cf/*.h .
  29. lnsoft ../lib/*.fnt .
  30. lnsoft ../lib/*.map .
  31.