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 / makefile < prev    next >
Makefile  |  1991-08-10  |  855b  |  34 lines

  1. ******************************************************************************
  2. *
  3. *    This is the makefile for SBProlog 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 -m=100 -dOS9 -l=builtin/builtin.l \
  16. #    -l=/dd/lib/signal.l -l=/dd/lib/clock.l
  17. LFLAGS = -t=/r0 -m=100 -dOS9 -l=builtin/builtin.l -l=/dd/lib/os9lib.l
  18.  
  19. *    Objects
  20. Objects = dispatch.r init.r float.r io.r sub_inst.r loader.r main.r \
  21.     parse_oprnd.r dis.r print_inst.r unify.r load_work.r aux.r mathutil.r
  22. *    Include files
  23. Includes = sim.h inst.h aux.h index.h simdef.h
  24.  
  25.  
  26. sbprolog: $(Objects) builtin/builtin.l
  27.     cc $(LFLAGS) -fd=../cmds/wam.sbprolog $(Objects)
  28.  
  29. $(Objects): $(Includes)
  30.  
  31. *    End of makefile
  32.  
  33.  
  34.