home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 1 / RISC_DISC_1.iso / pd_share / code / desklib / Docs / Blanks / Makefile < prev   
Encoding:
Makefile  |  1994-05-29  |  520 b   |  23 lines

  1. # Project:   Empty_Make_File
  2.  
  3. #
  4. #  To use this makefile, simply fill in the 2 parts marked 'XXXX'.
  5. #  'Files' lists the object files you wish to compile.
  6. #  'XXXXLib' is the filename of your sublibrary output file.
  7. #
  8.  
  9. .SUFFIXES:   .c .s .o
  10. CC           = cc
  11. CCflags      = -c -IDeskLib:,C: $(x_cflags)
  12. ObjAsmflags  = -Stamp -NoCache -CloseExec -Quit $(x_aflags)
  13.  
  14. Files        = o.XXXX
  15.  
  16.  
  17. XXXXLib:     $(Files)
  18.              $(do)
  19.  
  20. .c.o:;       $(CC) $(CCflags) $< -o $@
  21. .s.o:;       objasm $(ObjAsmflags) -from $< -to $@
  22.  
  23.