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

  1. # Project: SpriteLib
  2.  
  3. .SUFFIXES:   .c .s .o
  4. CC           = cc
  5. CCflags      = -c -IDeskLib:,C: $(x_cflags)
  6. ObjAsmflags  = -Throwback -Stamp -CloseExec -Quit $(x_aflags)
  7.  
  8. Files        = o.02ScrSave o.03ScrLoad o.09InitArea o.10Load o.11Merge \
  9.                o.12Save o.15Create o.16GetUser o.25Delete o.26Rename \
  10.                o.27Copy o.34Putuser o.40Readinfo o.60Redirect o.UnRedirect \
  11.                o.62ReadSave o.MemSize o.MemSizeIcn
  12.  
  13. SpriteLib:   $(Files)
  14.              $(do)
  15.  
  16. .c.o:;       $(CC) $(CCflags) $< -o $@
  17. .s.o:;       objasm $(ObjAsmflags) -from $< -to $@
  18.