home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / EFFO / forum3.lzh / EXAMPL / makefile < prev    next >
Makefile  |  1987-05-09  |  885b  |  34 lines

  1. RBFDSC    = d0  d1  h0  h0fmt  h1  h1fmt  r0   rs0   mz0
  2. RBFDSCR   = d0.r  d1.r  h0.r  h0fmt.r  h1.r  h1fmt.r  r0.r   rs1.r   mz1.r
  3. SCFDSC    = term   t1   t2   t3   p   p1
  4. SCFDSCR   = term.r   t1.r   t2.r   t3.r   p.r   p1.r
  5. SYSMODS   = init     sysgo
  6. SYSMODSR  = init.r   sysgo.r
  7.  
  8. SDIR      = .
  9. RDIR      = rels
  10. ODIR      = ../cmds/bootobjs
  11. RC        = r68020
  12.  
  13. SLIB      = ../lib/sys.l
  14. SYSRELS   = rels
  15. SYSDEFS   = ../defs/oskdefs.d ../defs/systype.d
  16. RFLAGS    = -q
  17. -x
  18.  
  19. make.date: $(RBFDSC) $(SCFDSC) $(SYSMODS)
  20.     touch make.date
  21.  
  22. # link descriptors
  23. $(SCFDSC): $(SLIB)
  24.     l68  $(RDIR)/$*.r -l=$(SLIB) -o=$(ODIR)/$*
  25. $(RBFDSC): $(SLIB)
  26.     l68  $(RDIR)/$*.r -l=$(SLIB) -o=$(ODIR)/$*
  27.     l68  $(RDIR)/$*.r -l=$(SLIB) -o=$(ODIR)/dd_$* -n=dd
  28.  
  29. $(SYSMODS): $(SLIB)
  30.     l68  $(RDIR)/$*.r -l=$(SLIB) -o=$(ODIR)/$*
  31.  
  32. # Take care of the assembly
  33. $(SCFDSCR) $(RBFDSCR) $(SYSMODSR): $(SYSDEFS)
  34.