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

  1. # Project: ResLib
  2.  
  3. .SUFFIXES:   .c .s .o
  4. CC           = cc
  5. CCflags      = -c -IDeskLib:,C: $(x_cflags)
  6. ObjAsmflags  = -Stamp -NoCache -CloseExec -Quit $(x_aflags) 
  7.  
  8.  
  9. Files        = o.Init o.InitPath o.Pathname
  10.  
  11.  
  12. ResLib:      $(Files)
  13.              $(do)
  14.  
  15. .c.o:;       $(CC) $(CCflags) $< -o $@
  16.  
  17. .s.o:;       objasm $(ObjAsmflags) -from $< -to $@
  18.