home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 1 / RISC_DISC_1.iso / pd_share / code / desklib / Libraries / Serial / Makefile next >
Encoding:
Makefile  |  1993-11-22  |  515 b   |  17 lines

  1. # Project: SerialLib
  2.  
  3. .SUFFIXES:   .c .s .o
  4. CC           = cc
  5. CCflags      = -c -IDeskLib:,C: $(x_cflags)
  6. ObjAsmflags  = -Throwback -Stamp -CloseExec -Quit $(x_aflags)
  7.  
  8. Files        = o.Activate o.Deactivate o.PutByte o.GetByte o.SendBreak \
  9.                o.SetTxRate o.GetTxRate o.SetRxRate o.GetRxRate o.SetFormat \
  10.                o.GetFormat o.GetStatus o.SetStatus o.NZPWOnRec
  11.  
  12. SerialLib:   $(Files)
  13.              $(do)
  14.  
  15. .c.o:;       $(CC) $(CCflags) $< -o $@
  16. .s.o:;       objasm $(ObjAsmflags) -from $< -to $@
  17.