home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1991 …esperately Seeking Seven / Desperately Seeking Seven.2mg / Dev.CD.8 / Essentials / Tools / DTS.Samples / SC01Shell / C.Shell / data.Build next >
Encoding:
Text File  |  1990-02-26  |  476 b   |  25 lines  |  [04] ASCII Text (0x0000)

  1. *
  2. *   This exec file does a data fork build of
  3. *   the sample application: Shell
  4. *
  5. *   File:         Build
  6. *   Target:       Shell
  7. *   Source:       Shell.c
  8. *   Link Script:  Shell.link
  9. *
  10. *   Copyright Apple Computer, Inc. 1988-1990
  11. *   All rights reserved.
  12. *
  13.  
  14. echo "Compiling Shell.c"
  15. compile Shell.c keep=Shell
  16.  
  17. echo "Linking..."
  18. linkiigs <Shell.link
  19.  
  20. echo "Duplicating data and resource forks..."
  21. duplicate -d Shell.dfork Shell
  22. duplicate -r Shell.rfork Shell
  23.  
  24. echo "Done!"
  25.