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

  1. # Project: WindowLib
  2.  
  3. .SUFFIXES:   .c .o
  4. CC           = cc
  5. CCflags      = -c -IDeskLib:,C: $(x_cflags)
  6.  
  7. Files        = o.AutoHelp o.Create o.CreateShow o.Delete o.GetInfo o.Help \
  8.                o.ModeChange o.ParentName o.SetTitle o.Show o.ToFront
  9.  
  10. WindowLib:   $(Files)
  11.              $(do)
  12.  
  13. .c.o:;       $(CC) $(CCflags) $< -o $@
  14.