home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 2 / DATAFILE_PDCD2.iso / utilities3 / discindex / DiscIndex / Source / MakeData < prev    next >
Text File  |  1994-08-02  |  1KB  |  33 lines

  1. # MakeFile for use with DiscIndex 1.00 (c) NA Carson 1994 A.D.
  2. # For use with nmu (Neil's Make Utility)
  3.  
  4. source_files
  5. {
  6.     <D$Dir>.C.FileUtils                      # Search, store etc.
  7.     <D$Dir>.C.LoadSave                       # Load and save records
  8.     <D$Dir>.C.Main                           # Guess... !
  9.     <D$Dir>.C.Mem_Man                        # Linked list manager
  10.     <D$Dir>.C.Recurse                        # Code for recursing thro' dir's.
  11.     <D$Dir>.C.Search                         # Code for searching
  12.     <D$Dir>.C.WinFill                        # Code for filling in windows
  13. }
  14.  
  15. object_files
  16. {
  17.     <D$Dir>.O.FileUtils
  18.     <D$Dir>.O.LoadSave
  19.     <D$Dir>.O.Main
  20.     <D$Dir>.O.Mem_Man
  21.     <D$Dir>.O.Recurse
  22.     <D$Dir>.O.Search
  23.     <D$Dir>.O.WinFill
  24. }
  25.  
  26. # The command used to invoke the compiler - %0 = object name, %1 = source name
  27.  
  28. compile_cli = "cc -c -I$.Libraries.CLib,$.Libraries.RISC_OSLib,$.Projects.DiscIndex -o%0 %1"
  29.  
  30. # The command string used to invoke the linker...
  31.  
  32. link_cli = "link -VIA $.Projects.DiscIndex.Sauce.LinkList -o <DiscIndex$Dir>.!RunImage"
  33.