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

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