home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 1 / RISC_DISC_1.iso / pd_share / code / desklib / Libraries / Str / Makefile next >
Encoding:
Makefile  |  1994-05-29  |  516 b   |  20 lines

  1. # Project: StrLib
  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.DecodeHex o.LeafName o.MakeASCIIZ o.MakeCR o.MakeHex \
  10.                o.strcmpcr o.strcatcr o.strcpycr o.strdup o.stricmp \
  11.                o.stricmpcr o.strlencr o.strncpycr o.strnicmp o.strnicmpcr
  12.  
  13.  
  14. StrLib:      $(Files)
  15.              $(do)
  16.  
  17. .c.o:;       $(CC) $(CCflags) $< -o $@
  18.  
  19. .s.o:;       objasm $(ObjAsmflags) -from $< -to $@
  20.