home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 1 / RISC_DISC_1.iso / pd_share / code / desklib / Libraries / KernelSWIs / Makefile < prev   
Encoding:
Makefile  |  1994-05-29  |  349 b   |  18 lines

  1. # Project: KernelLib
  2.  
  3. .SUFFIXES:   .c .s .o
  4. CC           = cc
  5. CCflags      = -c -IDeskLib:,C: $(x_cflags)
  6. ObjAsmflags  = -Stamp -NoCache -CloseExec -Quit $(x_aflags)
  7.  
  8.  
  9. Files        = o.OSByte o.OSWord o.ReadVarVal
  10.  
  11.  
  12. KernelLib:   $(Files)
  13.              $(do)
  14.  
  15. .s.o:;       objasm $(ObjAsmflags) -from $< -to $@
  16. .c.o:;       $(CC) $(CCflags) $< -o $@
  17.  
  18.