home *** CD-ROM | disk | FTP | other *** search
/ APDL Public Domain 1 / APDL_PD1A.iso / program / c / desklib / libraries / Libraries / Window / Makefile
Encoding:
Makefile  |  1995-01-14  |  501 b   |  17 lines

  1. # Project: WindowLib
  2.  
  3. .SUFFIXES:   .c .s .o
  4. CC           = cc
  5. CCflags      = -c -IDeskLib:,C: $(x_cflags)
  6. ObjAsmflags  = -Stamp -CloseExec -Quit $(x_aflags)
  7.  
  8. Files        = o.AutoHelp o.Create o.CreateShow o.Delete o.ForceRedrw \
  9.                o.GetCoords o.GetInfo o.GetInfo3 o.Help o.ModeChange \
  10.                o.ParentName o.SetExtent o.SetTitle o.Show o.ToFront
  11.  
  12. WindowLib:   $(Files)
  13.              $(do)
  14.  
  15. .c.o:;       $(CC) $(CCflags) $< -o $@
  16. .s.o:;       objasm $(ObjAsmflags) -from $< -to $@
  17.