home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 1 / RISC_DISC_1.iso / pd_share / code / desklib / Libraries / WAssert / Makefile
Encoding:
Makefile  |  1994-04-10  |  330 b   |  18 lines

  1. # Project: WAssertLib
  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.WAssert
  10.  
  11.  
  12. WAssertLib:  $(Files)
  13.              $(do)
  14.  
  15. .c.o:;       $(CC) $(CCflags) $< -o $@
  16.  
  17. .s.o:;       objasm $(ObjAsmflags) -from $< -to $@
  18.