home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 1 / RISC_DISC_1.iso / pd_share / code / desklib / Libraries / Template / Makefile
Encoding:
Makefile  |  1994-05-29  |  310 b   |  14 lines

  1. # Project: TempLib
  2.  
  3. .SUFFIXES:   .c .o
  4. CC           = cc
  5. CCflags      = -c -IDeskLib:,C: $(x_cflags)
  6.  
  7. Files        = o.ClearAll o.Clone o.Delete o.Find o.Free o.Init \
  8.                o.LoadFile o.UseOutFont o.UseSprite
  9.  
  10. TempLib:     $(Files)
  11.              $(do)         
  12.  
  13. .c.o:;       $(CC) $(CCflags) $< -o $@
  14.