home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / EFFO / pd3.lzh / SBPROLOG2.2 / SIM / BUILTIN / makefile < prev    next >
Makefile  |  1991-08-10  |  691b  |  30 lines

  1. ******************************************************************************
  2. *
  3. *    This is the makefile for SBProlog builtins compilation under OS9
  4. *
  5. ******************************************************************************
  6.  
  7. *    Default directories
  8. *    DDIR =
  9. *    SDIR =
  10. *    RDIR =
  11.  
  12. *    Compiler, assembler & linker flags
  13. CFLAGS = -t=/r0 -dOS9
  14. RFLAGS =
  15. LFLAGS = -t=/r0 -dOS9
  16.  
  17. *    Objects
  18. Objects = builtin.r init_branch.r meta.r tio.r structure.r name.r buffer.r \
  19.     other.r time.r compare.r substuff.r arith.r saverest.r file.r syscall.r
  20. *    Include files
  21. Includes = builtin.h ../sim.h ../aux.h
  22.  
  23. builtin.l: $(Objects)
  24.     merge -b=500 $(Objects) >-builtin.l
  25.  
  26. $(Objects): $(Includes)
  27.  
  28. *    End of makefile
  29.  
  30.