# TODO: Add some of the symbols in here to configure # These lines are needed on some machines. MAKE=make SHELL=@CONFIG_SHELL@ INSTALL=@INSTALL@ mkinstalldirs=$(SHELL) @top_srcdir@/mkinstalldirs # CC=@CC@ # YACC = @YACC@ YACCTAB = @YACCTAB@ # RM = rm -f MV = mv CP = cp # # some standard stuff... prefix= @prefix@ exec_prefix= @exec_prefix@ # # # Set MUD_LIB to the directory which contains the mud data. Was formerly # defined in config.h ! MUD_LIB = @libdir@ # # Set BINDIR to the directory where you want to install the executables. BINDIR = @bindir@ # # Set ERQ_DIR to directory which contains the stuff which ERQ can # execute (hopefully) savely. Was formerly defined in config.h! ERQ_DIR= @libexecdir@ # # Typical profiling, warning and optimizing options. # -p -DMARK: together they enable the profiling of VM instructions. # Additional profiling can be activated in config.h . #PROFIL=-p -DMARK #PROFIL=-pg PROFIL= # Enable warnings from the compiler, if wanted. NO_WARN= # no warning options - will work with all compilers :-) GCC_WARN= -Wall -Wshadow -Wparentheses # gcc settings CFG_WARN= @WCFLAGS@ # Warn options discovered by configure WARN= $(CFG_WARN) # Optimization and source level debugging options. # adding a -fomit-frame-pointer on the NeXT (gcc version 1.93 (68k, MIT syntax)) # will corrupt the driver. HIGH_OPTIMIZE = @OCFLAGS@ # high optimization MED_OPTIMIZE= @MCFLAGS@ # medium optimization MIN_OPTIMIZE = @LCFLAGS@ # minimal optimization NO_OPTIMIZE= @DCFLAGS@ # no optimization; for frequent recompilations. OPTIMIZE= $(MED_OPTIMIZE) # Debugging options: # Debugging options should be set in config.h to guarantee a clean # recompile. #DEBUG = -DDEBUG -DCHECK_STRINGS DEBUG= # MPATH=-DMUD_LIB='"$(MUD_LIB)"' -DBINDIR='"$(BINDIR)"' -DERQ_DIR='"$(ERQ_DIR)"' # CFLAGS= @EXTRA_CFLAGS@ $(OPTIMIZE) $(DEBUG) $(WARN) $(MPATH) $(PROFIL) # LIBS=@LIBS@ @PKGLIBS@ # LDFLAGS=@LDFLAGS@ # #Note that, if you use smalloc with SBRK_OK(which is the default), and #don't link statically, it could happen that the system malloc is linked #along with the one from smalloc; this combination is bound to cause crashes. MFLAGS = "BINDIR=$(BINDIR)" "MUD_LIB=$(MUD_LIB)" # SRC = access_check.c actions.c array.c backend.c call_out.c closure.c comm.c \ dumpstat.c ed.c efuns.c gcollect.c hash.c heartbeat.c interpret.c \ lex.c main.c mapping.c md5.c mempools.c object.c otable.c parse.c \ parser.c parse_old.c pkg-mysql.c port.c ptrtable.c \ random.c regexp.c rxcache.c simulate.c simul_efun.c stdstrings.c \ stralloc.c strfuns.c sprintf.c swap.c wiz_list.c xalloc.c OBJ = access_check.o actions.o array.o backend.o call_out.o closure.o comm.o \ dumpstat.o ed.o efuns.o gcollect.o hash.o heartbeat.o interpret.o \ lex.o main.o mapping.o md5.o mempools.o object.o otable.o parse.o \ parser.o parse_old.o pkg-mysql.o port.o ptrtable.o \ random.o regexp.o rxcache.o simulate.o simul_efun.o stdstrings.o \ stralloc.o strfuns.o sprintf.o swap.o wiz_list.o xalloc.o @ALLOCA@ ldmud@EXEEXT@: $(OBJ) $(CC) @OPTIMIZE_LINKING@ $(LDFLAGS) $(OBJ) -o $@ $(LIBS) install: ldmud@EXEEXT@ $(mkinstalldirs) $(BINDIR) $(INSTALL) -c $? $(BINDIR)/ldmud@EXEEXT@ install-utils: (cd util; $(MAKE) $(MFLAGS) install) utils: (cd util; $(MAKE) $(MFLAGS)) lint: *.c lint *.c clean: $(RM) $(YACCTAB)h $(YACCTAB)c make_func.c *.o make_func@EXEEXT@ $(RM) stdstrings.c stdstrings.h $(RM) efun_defs.c instrs.h lang.y lang.h lang.c y.output tags TAGS $(RM) ldmud@EXEEXT@ core mudlib/core mudlib/debug.log lpmud.log (cd util ; echo "Cleaning in util." ; $(MAKE) clean) distclean: clean $(RM) ldmud@EXEEXT@ config.status machine.h Makefile config.cache config.log $(RM) config.h config.status config.status.old $(RM) util/Makefile util/erq/Makefile util/xerq/Makefile tags: $(SRC) ctags $(SRC) TAGS: $(SRC) etags $(SRC) make_func.c: make_func.y $(YACC) make_func.y @MOVE_YACC_TAB@ make_func.c @CLEAN_YACC_TAB@ make_func.o : make_func_main.c make_func.c driver.h config.h machine.h port.h $(CC) $(CFLAGS) -DYACC='"$(YACC)"' -c make_func_main.c -o make_func.o make_func@EXEEXT@: make_func.o hash.o exec.h $(CC) @OPTIMIZE_LINKING@ $(LDFLAGS) make_func.o hash.o -o make_func@EXEEXT@ lang.y: make_func@EXEEXT@ prolang.y config.h $(RM) lang.y ./make_func@EXEEXT@ lang efun_defs.c instrs.h: func_spec make_func@EXEEXT@ config.h $(RM) instrs.h $(RM) efun_defs.c ./make_func@EXEEXT@ instrs stdstrings.c stdstrings.h: string_spec make_func@EXEEXT@ config.h $(RM) stdstrings.c $(RM) stdstrings.h ./make_func@EXEEXT@ strings lang.c lang.h: lang.y $(YACC) -d -v lang.y @MOVE_YACC_TAB@ lang.c @CLEAN_YACC_TAB@ $(MV) $(YACCTAB)h lang.h #-------------------------------------------------------- # The dependency generation uses the program 'mkdepend' and assumes GNUmake. # Generated source files (overlaps with of SRC) which need to be # present for mkdepend to work. GENSRC = make_func.c stdstrings.c lang.c instrs.h # Macros for MkDepend: SKELETON = $(SRC) make_func_main.c EXCEPT = -x efun_defs.c SELECT = -S instrs.h -S stdstrings.h -S make_func.c -S lang.c -S lang.h -S efun_defs.c depend: $(SRC) $(GENSRC) @$(SHELL) -ec "if type mkdepend > /dev/null 2>&1; then \ echo Updating dependencies.; \ mkdepend $(SKELETON) -I. $(EXCEPT) -m -p .c:%n.o -fMakefile; \ mkdepend $(SKELETON) -I. $(EXCEPT) $(SELECT) -m -p .c:%n.o -fMakefile; \ echo Updating dependencies in Makefile.in.; \ mkdepend $(SKELETON) -I. $(EXCEPT) -m -p .c:%n.o -fMakefile.in; \ mkdepend $(SKELETON) -I. $(EXCEPT) $(SELECT) -m -p .c:%n.o -fMakefile.in; \ else\ echo mkdepend utility not available.; \ fi" .PHONY dependall: depend depend-generic depend-amiga depend-generic: $(SRC) $(GENSRC) @$(SHELL) -ec "if type mkdepend > /dev/null 2>&1; then \ echo Updating dependencies in hosts/be/Makefile.; \ mkdepend $(SKELETON) -I. $(EXCEPT) -m -p .c:$$\(OBJ\)/%n.o -fhosts/be/Makefile; \ mkdepend $(SKELETON) -I. $(EXCEPT) $(SELECT) -m -p .c:$$\(OBJ\)/%n.o -fhosts/be/Makefile; \ echo Updating dependencies in hosts/os2/Makefile.; \ mkdepend $(SKELETON) -I. $(EXCEPT) -m -p .c:%n.o -fhosts/os2/Makefile; \ mkdepend $(SKELETON) $(SELECT) -I. $(EXCEPT) -m -p .c:%n.o -fhosts/os2/Makefile; \ else\ echo mkdepend utility not available.; \ fi" AMIGASRC = hosts/amiga/amiga.c hosts/amiga/signal.c hosts/amiga/signal_rr.c hosts/amiga/socket.c hosts/amiga/ixfile.c depend-amiga: $(SRC) $(GENSRC) $(AMIGASRC) @$(SHELL) -ec "if type mkdepend > /dev/null 2>&1; then \ echo Updating dependencies in hosts/amiga/DMakefile.; \ mkdepend $(SKELETON) $(AMIGASRC) -I. $(EXCEPT) -m -p .c+:%n.o -Ihosts/amiga -fhosts/amiga/DMakefile; \ mkdepend $(SKELETON) $(AMIGASRC) $(SELECT) -m -I. $(EXCEPT) -p .c+:%n.o -Ihosts/amiga -fhosts/amiga/DMakefile; \ echo Updating dependencies in hosts/amiga/Makefile.; \ mkdepend $(SKELETON) $(AMIGASRC) -I. $(EXCEPT) -m -p .c+:%n.o -Ihosts/amiga -fhosts/amiga/Makefile; \ mkdepend $(SKELETON) $(AMIGASRC) $(SELECT) -I. $(EXCEPT) -m -p .c+:%n.o -Ihosts/amiga -fhosts/amiga/Makefile; \ else\ echo mkdepend utility not available.; \ fi" #-------------------------------------------------------- # Dependencies, manual and automatic. # --- DO NOT MODIFY THIS LINE -- AUTO-DEPENDS FOLLOW --- access_check.o : xalloc.h filestat.h comm.h access_check.h driver.h \ svalue.h simulate.h typedefs.h config.h port.h strfuns.h sent.h \ instrs.h hosts/unix.h hosts/be/be.h hosts/amiga/amiga.h \ hosts/amiga/patchfloat.h machine.h exec.h ./hosts/amiga/ixfile.h actions.o : ../mudlib/sys/driver_hook.h ../mudlib/sys/commands.h xalloc.h \ wiz_list.h stralloc.h smalloc.h simulate.h sent.h object.h mapping.h \ interpret.h exec.h efuns.h dumpstat.h comm.h closure.h backend.h \ array.h actions.h typedefs.h driver.h svalue.h main.h strfuns.h \ instrs.h port.h config.h hosts/unix.h hosts/be/be.h hosts/amiga/amiga.h \ hosts/amiga/patchfloat.h machine.h ./hosts/amiga/ixfile.h array.o : ../mudlib/sys/inherit_list.h ../mudlib/sys/include_list.h \ ../mudlib/sys/functionlist.h smalloc.h xalloc.h wiz_list.h swap.h \ stralloc.h svalue.h simulate.h rxcache.h regexp.h object.h mempools.h \ mapping.h main.h interpret.h instrs.h closure.h backend.h array.h \ my-alloca.h typedefs.h driver.h ../mudlib/sys/lpctypes.h strfuns.h \ sent.h exec.h port.h config.h hosts/unix.h hosts/be/be.h \ hosts/amiga/amiga.h hosts/amiga/patchfloat.h machine.h \ ./hosts/amiga/ixfile.h backend.o : ../mudlib/sys/debug_message.h ../mudlib/sys/driver_hook.h \ xalloc.h wiz_list.h swap.h stralloc.h stdstrings.h smalloc.h simulate.h \ rxcache.h regexp.h random.h otable.h object.h my-alloca.h mapping.h \ main.h lex.h interpret.h heartbeat.h gcollect.h filestat.h exec.h ed.h \ comm.h closure.h call_out.h array.h actions.h backend.h \ hosts/amiga/nsignal.h typedefs.h driver.h svalue.h strfuns.h sent.h \ instrs.h port.h config.h hosts/unix.h hosts/be/be.h hosts/amiga/amiga.h \ hosts/amiga/patchfloat.h machine.h ./hosts/amiga/ixfile.h call_out.o : ../mudlib/sys/debug_info.h xalloc.h wiz_list.h swap.h svalue.h \ strfuns.h stralloc.h simulate.h object.h main.h interpret.h gcollect.h \ exec.h comm.h closure.h backend.h array.h actions.h call_out.h \ typedefs.h driver.h smalloc.h sent.h instrs.h port.h config.h \ hosts/unix.h hosts/be/be.h hosts/amiga/amiga.h hosts/amiga/patchfloat.h \ machine.h ./hosts/amiga/ixfile.h closure.o : xalloc.h switch.h svalue.h stralloc.h stdstrings.h simul_efun.h \ simulate.h prolang.h object.h main.h lex.h lang.h interpret.h instrs.h \ exec.h backend.h array.h closure.h my-alloca.h typedefs.h driver.h \ smalloc.h strfuns.h ptrtable.h sent.h port.h config.h hosts/unix.h \ hosts/be/be.h hosts/amiga/amiga.h hosts/amiga/patchfloat.h machine.h \ ./hosts/amiga/ixfile.h comm.o : util/erq/erq.h ../mudlib/sys/driver_hook.h \ ../mudlib/sys/input_to.h xalloc.h wiz_list.h swap.h stralloc.h \ stdstrings.h smalloc.h simulate.h sent.h object.h main.h interpret.h \ gcollect.h filestat.h exec.h ed.h closure.h backend.h array.h actions.h \ access_check.h comm.h hosts/amiga/nsignal.h telnet.h my-alloca.h \ typedefs.h driver.h svalue.h strfuns.h instrs.h config.h port.h \ hosts/unix.h hosts/be/be.h hosts/amiga/amiga.h hosts/amiga/patchfloat.h \ machine.h ./hosts/amiga/ixfile.h dumpstat.o : svalue.h xalloc.h smalloc.h simulate.h ptrtable.h object.h \ mapping.h instrs.h filestat.h exec.h closure.h array.h dumpstat.h \ typedefs.h driver.h strfuns.h sent.h port.h config.h hosts/unix.h \ hosts/be/be.h hosts/amiga/amiga.h hosts/amiga/patchfloat.h machine.h \ ./hosts/amiga/ixfile.h ed.o : xalloc.h svalue.h stralloc.h stdstrings.h simulate.h rxcache.h \ regexp.h object.h main.h interpret.h gcollect.h filestat.h comm.h \ closure.h actions.h ed.h typedefs.h driver.h smalloc.h strfuns.h sent.h \ instrs.h exec.h port.h config.h hosts/unix.h hosts/be/be.h \ hosts/amiga/amiga.h hosts/amiga/patchfloat.h machine.h \ ./hosts/amiga/ixfile.h efuns.o : ../mudlib/sys/time.h ../mudlib/sys/strings.h \ ../mudlib/sys/objectinfo.h ../mudlib/sys/debug_info.h xalloc.h \ wiz_list.h svalue.h swap.h strfuns.h stralloc.h stdstrings.h smalloc.h \ simulate.h rxcache.h ptrtable.h otable.h object.h md5.h mapping.h \ main.h interpret.h instrs.h heartbeat.h dumpstat.h comm.h closure.h \ call_out.h backend.h array.h actions.h efuns.h my-alloca.h typedefs.h \ driver.h sent.h regexp.h exec.h port.h config.h hosts/unix.h \ hosts/be/be.h hosts/amiga/amiga.h hosts/amiga/patchfloat.h machine.h \ ./hosts/amiga/ixfile.h gcollect.o : ../mudlib/sys/driver_hook.h xalloc.h wiz_list.h swap.h \ stralloc.h stdstrings.h smalloc.h simul_efun.h simulate.h sent.h \ rxcache.h prolang.h parse.h otable.h object.h mapping.h main.h lex.h \ interpret.h instrs.h heartbeat.h filestat.h exec.h ed.h comm.h \ closure.h call_out.h backend.h array.h actions.h gcollect.h typedefs.h \ driver.h svalue.h strfuns.h ptrtable.h regexp.h port.h config.h \ hosts/unix.h hosts/be/be.h hosts/amiga/amiga.h hosts/amiga/patchfloat.h \ machine.h ./hosts/amiga/ixfile.h hash.o : hash.h heartbeat.o : ../mudlib/sys/debug_info.h xalloc.h wiz_list.h svalue.h \ strfuns.h simulate.h sent.h object.h interpret.h gcollect.h comm.h \ backend.h array.h actions.h heartbeat.h typedefs.h driver.h instrs.h \ main.h port.h config.h exec.h hosts/unix.h hosts/be/be.h \ hosts/amiga/amiga.h hosts/amiga/patchfloat.h machine.h \ ./hosts/amiga/ixfile.h interpret.o : ../mudlib/sys/trace.h ../mudlib/sys/debug_info.h \ ../mudlib/sys/driver_hook.h xalloc.h wiz_list.h switch.h swap.h \ svalue.h sprintf.h smalloc.h stralloc.h stdstrings.h simul_efun.h \ simulate.h sent.h random.h ptrtable.h prolang.h parse.h otable.h \ object.h mapping.h main.h lex.h instrs.h heartbeat.h gcollect.h \ filestat.h exec.h efuns.h ed.h comm.h closure.h call_out.h backend.h \ array.h actions.h interpret.h my-rusage.h my-alloca.h typedefs.h \ driver.h strfuns.h port.h config.h hosts/unix.h hosts/be/be.h \ hosts/amiga/amiga.h hosts/amiga/patchfloat.h machine.h \ ./hosts/amiga/ixfile.h lex.o : efun_defs.c hosts/amiga/socket.h ../mudlib/sys/driver_hook.h \ xalloc.h wiz_list.h strfuns.h stralloc.h stdstrings.h simul_efun.h \ simulate.h prolang.h patchlevel.h object.h mempools.h main.h lang.h \ interpret.h instrs.h hash.h gcollect.h filestat.h exec.h comm.h \ closure.h backend.h array.h lex.h my-alloca.h typedefs.h driver.h \ ./hosts/amiga/socket_sim.h ./hosts/amiga/socket_tcp.h svalue.h \ smalloc.h ptrtable.h sent.h port.h config.h \ ./hosts/amiga/socket_sim_protos.h hosts/unix.h hosts/be/be.h \ hosts/amiga/amiga.h hosts/amiga/patchfloat.h machine.h \ ./hosts/amiga/ixfile.h main.o : xalloc.h wiz_list.h swap.h svalue.h stralloc.h stdstrings.h \ simul_efun.h simulate.h rxcache.h random.h patchlevel.h otable.h \ object.h mapping.h lex.h interpret.h gcollect.h filestat.h comm.h \ array.h backend.h main.h hosts/amiga/socket.h my-alloca.h typedefs.h \ driver.h smalloc.h strfuns.h ptrtable.h exec.h sent.h instrs.h regexp.h \ ./hosts/amiga/socket_sim.h ./hosts/amiga/socket_tcp.h port.h config.h \ ./hosts/amiga/socket_sim_protos.h hosts/unix.h hosts/be/be.h \ hosts/amiga/amiga.h hosts/amiga/patchfloat.h machine.h \ ./hosts/amiga/ixfile.h make_func_main.o : make_func.c ../mudlib/sys/driver_hook.h hash.h exec.h \ my-alloca.h driver.h typedefs.h port.h config.h hosts/unix.h \ hosts/be/be.h hosts/amiga/amiga.h hosts/amiga/patchfloat.h machine.h \ ./hosts/amiga/ixfile.h mapping.o : xalloc.h wiz_list.h svalue.h stralloc.h smalloc.h simulate.h \ regexp.h object.h main.h interpret.h gcollect.h closure.h backend.h \ array.h mapping.h my-alloca.h typedefs.h driver.h strfuns.h sent.h \ instrs.h exec.h port.h config.h hosts/unix.h hosts/be/be.h \ hosts/amiga/amiga.h hosts/amiga/patchfloat.h machine.h \ ./hosts/amiga/ixfile.h md5.o : md5.h machine.h mempools.o : xalloc.h gcollect.h mempools.h driver.h typedefs.h port.h \ config.h hosts/unix.h hosts/be/be.h hosts/amiga/amiga.h \ hosts/amiga/patchfloat.h machine.h ./hosts/amiga/ixfile.h object.o : ../mudlib/sys/driver_hook.h xalloc.h wiz_list.h svalue.h swap.h \ strfuns.h stralloc.h stdstrings.h simul_efun.h simulate.h smalloc.h \ sent.h random.h ptrtable.h prolang.h otable.h mapping.h main.h lex.h \ lang.h interpret.h filestat.h exec.h comm.h closure.h backend.h array.h \ actions.h object.h my-alloca.h typedefs.h driver.h instrs.h port.h \ config.h hosts/unix.h hosts/be/be.h hosts/amiga/amiga.h \ hosts/amiga/patchfloat.h machine.h ./hosts/amiga/ixfile.h otable.o : ../mudlib/sys/debug_info.h xalloc.h svalue.h simulate.h \ strfuns.h object.h hash.h gcollect.h backend.h otable.h typedefs.h \ driver.h sent.h instrs.h main.h port.h config.h exec.h hosts/unix.h \ hosts/be/be.h hosts/amiga/amiga.h hosts/amiga/patchfloat.h machine.h \ ./hosts/amiga/ixfile.h parse.o : xalloc.h wiz_list.h svalue.h stralloc.h stdstrings.h simulate.h \ object.h main.h interpret.h instrs.h gcollect.h closure.h array.h \ actions.h parse.h typedefs.h driver.h smalloc.h strfuns.h sent.h exec.h \ port.h config.h hosts/unix.h hosts/be/be.h hosts/amiga/amiga.h \ hosts/amiga/patchfloat.h machine.h ./hosts/amiga/ixfile.h parse_old.o : xalloc.h wiz_list.h svalue.h stralloc.h stdstrings.h \ simulate.h random.h object.h main.h gcollect.h interpret.h closure.h \ array.h actions.h parse.h typedefs.h driver.h smalloc.h strfuns.h \ sent.h instrs.h exec.h port.h config.h hosts/unix.h hosts/be/be.h \ hosts/amiga/amiga.h hosts/amiga/patchfloat.h machine.h \ ./hosts/amiga/ixfile.h parser.o : lang.c ../mudlib/sys/driver_hook.h xalloc.h wiz_list.h switch.h \ swap.h svalue.h stralloc.h stdstrings.h simul_efun.h simulate.h \ object.h mapping.h main.h lex.h instrs.h interpret.h gcollect.h exec.h \ closure.h backend.h array.h prolang.h my-alloca.h typedefs.h driver.h \ smalloc.h strfuns.h ptrtable.h sent.h port.h config.h hosts/unix.h \ hosts/be/be.h hosts/amiga/amiga.h hosts/amiga/patchfloat.h machine.h \ ./hosts/amiga/ixfile.h pkg-mysql.o : xalloc.h svalue.h simulate.h interpret.h array.h pkg-mysql.h \ my-alloca.h typedefs.h driver.h strfuns.h sent.h instrs.h port.h \ config.h exec.h hosts/unix.h hosts/be/be.h hosts/amiga/amiga.h \ hosts/amiga/patchfloat.h machine.h ./hosts/amiga/ixfile.h port.o : hosts/crypt.c main.h backend.h my-rusage.h driver.h typedefs.h \ port.h config.h hosts/unix.h hosts/be/be.h hosts/amiga/amiga.h \ hosts/amiga/patchfloat.h machine.h ./hosts/amiga/ixfile.h ptrtable.o : simulate.h mempools.h ptrtable.h driver.h svalue.h strfuns.h \ sent.h instrs.h typedefs.h port.h config.h exec.h hosts/unix.h \ hosts/be/be.h hosts/amiga/amiga.h hosts/amiga/patchfloat.h machine.h \ ./hosts/amiga/ixfile.h random.o : random.h driver.h port.h config.h hosts/unix.h hosts/be/be.h \ hosts/amiga/amiga.h hosts/amiga/patchfloat.h machine.h \ ./hosts/amiga/ixfile.h regexp.o : main.h xalloc.h simulate.h comm.h regexp.h driver.h typedefs.h \ svalue.h strfuns.h sent.h instrs.h port.h config.h exec.h hosts/unix.h \ hosts/be/be.h hosts/amiga/amiga.h hosts/amiga/patchfloat.h machine.h \ ./hosts/amiga/ixfile.h rxcache.o : ../mudlib/sys/debug_info.h xalloc.h svalue.h strfuns.h \ stralloc.h smalloc.h regexp.h hash.h gcollect.h rxcache.h driver.h \ typedefs.h main.h port.h config.h hosts/unix.h hosts/be/be.h \ hosts/amiga/amiga.h hosts/amiga/patchfloat.h machine.h \ ./hosts/amiga/ixfile.h simul_efun.o : xalloc.h swap.h svalue.h stralloc.h stdstrings.h simulate.h \ ptrtable.h object.h lex.h interpret.h instrs.h gcollect.h exec.h \ array.h simul_efun.h my-alloca.h typedefs.h driver.h main.h smalloc.h \ strfuns.h sent.h port.h config.h hosts/unix.h hosts/be/be.h \ hosts/amiga/amiga.h hosts/amiga/patchfloat.h machine.h \ ./hosts/amiga/ixfile.h simulate.o : ../mudlib/sys/rtlimits.h ../mudlib/sys/files.h \ ../mudlib/sys/driver_hook.h ../mudlib/sys/debug_info.h xalloc.h \ wiz_list.h svalue.h swap.h strfuns.h stralloc.h stdstrings.h \ simul_efun.h sent.h rxcache.h prolang.h otable.h object.h mapping.h \ main.h lex.h instrs.h interpret.h heartbeat.h gcollect.h filestat.h \ exec.h ed.h dumpstat.h comm.h closure.h call_out.h backend.h array.h \ actions.h simulate.h hosts/amiga/nsignal.h my-alloca.h typedefs.h \ driver.h smalloc.h ptrtable.h regexp.h port.h config.h hosts/unix.h \ hosts/be/be.h hosts/amiga/amiga.h hosts/amiga/patchfloat.h machine.h \ ./hosts/amiga/ixfile.h sprintf.o : xalloc.h swap.h stralloc.h stdstrings.h simul_efun.h simulate.h \ sent.h random.h ptrtable.h object.h mapping.h main.h instrs.h \ interpret.h exec.h closure.h array.h sprintf.h my-alloca.h typedefs.h \ driver.h smalloc.h strfuns.h svalue.h port.h config.h hosts/unix.h \ hosts/be/be.h hosts/amiga/amiga.h hosts/amiga/patchfloat.h machine.h \ ./hosts/amiga/ixfile.h stdstrings.o : stralloc.h stdstrings.h driver.h main.h smalloc.h strfuns.h \ port.h config.h typedefs.h svalue.h hosts/unix.h hosts/be/be.h \ hosts/amiga/amiga.h hosts/amiga/patchfloat.h machine.h \ ./hosts/amiga/ixfile.h stralloc.o : ../mudlib/sys/debug_info.h xalloc.h svalue.h strfuns.h \ stdstrings.h smalloc.h simulate.h main.h hash.h gcollect.h stralloc.h \ driver.h typedefs.h sent.h instrs.h port.h config.h exec.h hosts/unix.h \ hosts/be/be.h hosts/amiga/amiga.h hosts/amiga/patchfloat.h machine.h \ ./hosts/amiga/ixfile.h strfuns.o : xalloc.h smalloc.h svalue.h simulate.h comm.h strfuns.h \ typedefs.h driver.h sent.h instrs.h port.h config.h exec.h hosts/unix.h \ hosts/be/be.h hosts/amiga/amiga.h hosts/amiga/patchfloat.h machine.h \ ./hosts/amiga/ixfile.h swap.o : hosts/amiga/socket.h ../mudlib/sys/debug_info.h xalloc.h \ wiz_list.h svalue.h strfuns.h stralloc.h simul_efun.h simulate.h \ random.h prolang.h otable.h object.h mapping.h main.h interpret.h \ gcollect.h exec.h comm.h backend.h array.h swap.h typedefs.h driver.h \ ./hosts/amiga/socket_sim.h ./hosts/amiga/socket_tcp.h smalloc.h \ ptrtable.h sent.h instrs.h port.h config.h \ ./hosts/amiga/socket_sim_protos.h hosts/unix.h hosts/be/be.h \ hosts/amiga/amiga.h hosts/amiga/patchfloat.h machine.h \ ./hosts/amiga/ixfile.h wiz_list.o : xalloc.h svalue.h stralloc.h stdstrings.h simulate.h object.h \ mapping.h main.h interpret.h gcollect.h backend.h array.h \ ../mudlib/sys/wizlist.h wiz_list.h typedefs.h driver.h smalloc.h \ strfuns.h sent.h instrs.h port.h config.h exec.h hosts/unix.h \ hosts/be/be.h hosts/amiga/amiga.h hosts/amiga/patchfloat.h machine.h \ ./hosts/amiga/ixfile.h xalloc.o : smalloc.c simulate.h main.h interpret.h xalloc.h driver.h \ ../mudlib/sys/debug_info.h object.h exec.h svalue.h gcollect.h \ backend.h smalloc.h typedefs.h strfuns.h sent.h instrs.h port.h \ config.h hosts/unix.h hosts/be/be.h hosts/amiga/amiga.h \ hosts/amiga/patchfloat.h machine.h ./hosts/amiga/ixfile.h # --- DO NOT MODIFY THIS LINE -- AUTO-DEPENDS PRECEDE --- # --- DO NOT MODIFY THIS LINE -- SELECTED AUTO-DEPENDS FOLLOW --- access_check.o : instrs.h actions.o : instrs.h array.o : instrs.h backend.o : stdstrings.h instrs.h call_out.o : instrs.h closure.o : stdstrings.h lang.h instrs.h comm.o : stdstrings.h instrs.h dumpstat.o : instrs.h ed.o : stdstrings.h instrs.h efuns.o : stdstrings.h instrs.h gcollect.o : stdstrings.h instrs.h heartbeat.o : instrs.h interpret.o : stdstrings.h instrs.h lex.o : efun_defs.c stdstrings.h lang.h instrs.h main.o : stdstrings.h instrs.h make_func_main.o : make_func.c mapping.o : instrs.h object.o : stdstrings.h lang.h instrs.h otable.o : instrs.h parse.o : stdstrings.h instrs.h parse_old.o : stdstrings.h instrs.h parser.o : lang.c stdstrings.h instrs.h pkg-mysql.o : instrs.h ptrtable.o : instrs.h regexp.o : instrs.h simul_efun.o : stdstrings.h instrs.h simulate.o : stdstrings.h instrs.h sprintf.o : stdstrings.h instrs.h stdstrings.o : stdstrings.h stralloc.o : stdstrings.h instrs.h strfuns.o : instrs.h swap.o : instrs.h wiz_list.o : stdstrings.h instrs.h xalloc.o : instrs.h # --- DO NOT MODIFY THIS LINE -- SELECTED AUTO-DEPENDS PRECEDE ---