home *** CD-ROM | disk | FTP | other *** search
/ APDL Public Domain 1 / APDL_PD1A.iso / program / c / desklib / libraries / Libraries / MsgTrans / Makefile
Encoding:
Makefile  |  1994-11-19  |  448 b   |  19 lines

  1. # Project:   MsgTranLib
  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. LibFileflags = -c -o $@
  8.  
  9. Files        = o.CloseFile o.FileInfo o.LoadFile o.Lookup o.LookupPS \
  10.                o.LoseFile o.OpenFile o.ReportPS
  11.  
  12.  
  13. MsgTranLib:  $(Files)
  14.              $(do)
  15.  
  16. .c.o:;       $(CC) $(CCflags) $< -o $@
  17. .s.o:;       objasm $(ObjAsmflags) -from $< -to $@
  18.  
  19.