home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 2 / DATAFILE_PDCD2.iso / utilities2 / desklib / Libraries / Event / Makefile
Encoding:
Makefile  |  1993-07-14  |  301 b   |  16 lines

  1. # Project: EventLib
  2.  
  3. .SUFFIXES:   .c .o
  4. CC           = cc
  5. CCflags      = -c -IDeskLib:,C: $(x_cflags)
  6. Linkflags    = -o $@
  7. LibFileflags = -c -o $@
  8.  
  9. Files        = o.Event o.MClaimInit o.MRelease o.MRelMsg o.MRelWindow
  10.  
  11.  
  12. EventLib:    $(Files)
  13.              $(do)
  14.  
  15. .c.o:;       $(CC) $(CCflags) $< -o $@
  16.