home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 1 / LSD Compendium Deluxe 1.iso / a / programming / assemblers / cas.lha / smakefile < prev    next >
Encoding:
Makefile  |  1993-07-14  |  1006 b   |  65 lines

  1. CC=sc
  2.  
  3. DASOBJS=das.o
  4. DSOBJS=ds.o
  5. CASOBJS=cas.o link.o st.o res.o op.o ex.o io.o
  6. RELOCOBJS=reloc.o
  7. SEMIOBJS=semi.o
  8. NLOBJS=nl.o
  9.  
  10. all:    ds cas das reloc semi nl
  11.  
  12. das:    $(DASOBJS)
  13.         $(CC) LINK $(DASOBJS) TO das
  14.  
  15. ds:        $(DSOBJS)
  16.         $(CC) LINK $(DSOBJS) TO ds 
  17.  
  18. cas:    $(CASOBJS)
  19.         $(CC) LINK $(CASOBJS) TO cas 
  20.  
  21. reloc:    $(RELOCOBJS)
  22.         $(CC) LINK $(RELOCOBJS) TO reloc 
  23.  
  24. semi:    $(SEMIOBJS)
  25.         $(CC) LINK $(SEMIOBJS) TO semi 
  26.  
  27. nl:        $(NLOBJS)
  28.         $(CC) LINK $(NLOBJS) TO nl 
  29.  
  30. cas.o:    cas.c io.h op.h st.h link.h
  31.         $(CC) cas.c
  32.  
  33. link.o:    link.c io.h ex.h res.h st.h
  34.         $(CC) link.c
  35.  
  36. st.o:        st.c io.h ex.h op.h res.h
  37.         $(CC) st.c
  38.  
  39. res.o:    res.c io.h ex.h st.h res.h
  40.         $(CC) res.c
  41.  
  42. op.o:        op.c io.h ex.h st.h res.h op.h
  43.         $(CC) op.c
  44.  
  45. ex.o:        ex.c io.h ex.h st.h res.h
  46.         $(CC) ex.c
  47.  
  48. io.o:        io.c io.h op.h
  49.         $(CC) io.c
  50.  
  51. ds.o:        ds.c
  52.         $(CC) ds.c
  53.  
  54. das.o:    das.c
  55.         $(CC) das.c
  56.  
  57. reloc.o:    reloc.c
  58.         $(CC) reloc.c
  59.  
  60. semi.o:    semi.c
  61.         $(CC) semi.c
  62.  
  63. nl.o:        nl.c
  64.         $(CC) nl.c
  65.