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 / full.Build < prev    next >
Encoding:
Text File  |  1990-05-21  |  655 b   |  31 lines  |  [04] ASCII Text (0x0000)

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