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

  1. # Project:   MemLib
  2.  
  3. .SUFFIXES:    .c .o
  4. CC            = cc
  5. CCFlags       = -c -IC: $(x_cflags)
  6.  
  7. Files         = o.CheckHeap o.Compact o.Mem o.MidExtend \
  8.                 o.MoveAnchor o.Size
  9.  
  10.  
  11. MemLib:       $(Files)
  12.               $(do)
  13.  
  14. .c.o:;        $(CC) $(CCflags) $< -o $@
  15.