pike.git
/
src
/
Makefile.in
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/Makefile.in:8:
# not used yet INSTALL=@INSTALL@ SRCDIR=@srcdir@ VPATH=@srcdir@ # These are used while compiling TMP_LIBDIR = @LIBDIR@ TMP_BINDIR = @BINDIR@ TMP_BUILDDIR = @BUILDDIR@
+
TMP_DOCDIR = @DOCDIR@
prefix = @prefix@ exec_prefix = $(prefix)/bin lib_prefix = $(prefix)/lib/ulpc # # use bison please, yacc doesn't always work good enough. # YACC=@YACC@ YFLAGS=-d -v
pike.git/src/Makefile.in:34:
# #Enable warnings from the compiler, if wanted. # WARN=@WARN@ #WARN=-W -Wunused -Wformat #WARN -Wunused -Wformat -Wuninitialized #WARN= -Wall -Wshadow -Dlint #add extra defines here
-
DEFINES=-DDEFAULT_MASTER=\"$(lib_prefix)/master.lpc\"
+
# Be sure to use -g and -DDEBUG when looking for bugs
+
DEFINES=-
DDEBUG -
DDEFAULT_MASTER=\"$(lib_prefix)/master.lpc\"
# -O should work with all compilers OPTIMIZE=@OPTIMIZE@ # Preprocessor flags. PREFLAGS=-I. -I$(SRCDIR) $(DEFINES) OTHERFLAGS=$(OSFLAGS) $(OPTIMIZE) $(WARN) $(PROFIL) CFLAGS=$(PREFLAGS) $(OTHERFLAGS) CC=@CC@
pike.git/src/Makefile.in:75:
# MODULES=@subdirs@ MODULE_OBJS=@MODULE_OBJS@ # # User callable targets # all: ulpc
-
optimum:
-
$(MAKE) all OTHERFLAGS="-pipe -g -W -Wunused -Wformat -O4711 -funroll-loops -mv8"
-
+
ulpc: $(OBJ) module_objects -mv ulpc ulpc.old $(LD) $(LDFLAGS) $(OBJ) $(MODULE_OBJS) -o ulpc $(LIBS) # purify pure: $(OBJ) module_objects -mv ulpc ulpc.old purify -free-queue-length=500 -inuse-at-exit=yes -chain-length=12 $(LD) $(LDFLAGS) $(OBJ) $(MODULE_OBJS) -o ulpc $(LIBS)
pike.git/src/Makefile.in:136:
-rm -f .pure driver* l.outa* # create tags tags: ctags *.c TAGS: etags -t *.h *.c # verify / debug
-
verify: $(
TMP_LIBDIR
)/testsuite
.lpc
-
$(RUNULPC) $(
TMP
_
LIBDIR
)/testsuite.lpc
+
verify: $(
SRCDIR
)/
test/
testsuite
+
$(RUNULPC) $(SRCDIR)/test/test_lpc
.lpc
$(SRCDIR)/test/testsuite
+
$(RUNULPC) $(
SRCDIR
)/
test/verifymanual
.lpc
$(TMP_DOCDIR)
# verify / debug verbose
-
verbose_verify: $(
TMP_LIBDIR
)/testsuite
.lpc
-
$(RUNULPC) $(
TMP_LIBDIR
)/
testsuite
.lpc --verbose
+
verbose_verify: $(
SRCDIR
)/
test/
testsuite
+
$(RUNULPC) $(
SRCDIR
)/
test/test_lpc
.lpc
$(SRCDIR)/test/testsuite
--verbose
+
$(RUNULPC) $(SRCDIR)/test/verifymanual.lpc $(TMP_DOCDIR)
# verify & debug VERBOSE
-
gdb_verify: $(
TMP_LIBDIR
)/testsuite
.lpc
+
gdb_verify: $(
SRCDIR
)/
test/
testsuite
echo >.gdbinit handle SIGUSR1 nostop noprint pass
-
echo >>.gdbinit run -m $(TMP_LIBDIR)/master.lpc $(
TMP_LIBDIR
)/
testsuite
.lpc -v -v -f
+
echo >>.gdbinit run -m $(TMP_LIBDIR)/master.lpc $(
SRCDIR
)/
test/test_lpc
.lpc
$(SRCDIR)/test/testsuite
-v -v -f
gdb ./ulpc # run hilfe, for interactive testing run_hilfe: $(RUNULPC) $(TMP_BINDIR)/hilfe # make export archive (requires compiled uLPC) # Do not compile in source tree if you want to use this!
-
export: $(
TMP_LIBDIR
)/testsuite
.lpc
+
export: $(
SRCDIR
)/
test/
testsuite
configure
$(RUNULPC) $(TMP_BINDIR)/export.lpc # make dependencies (requires compiled uLPC) depend: language.c gcc -MM $(PREFLAGS) *.c $(SRCDIR)/*.c | $(FIXDEP) $(SRCDIR)/Makefile.in for a in $(MODULES) ; do ( cd $$a ; ${MAKE} $(MAKE_FLAGS) depend ) ; done # # uLPC internal targets #
pike.git/src/Makefile.in:200:
./config.status machine.h: stamp-h stamp-h: machine.h.in config.status ./config.status modlist.h: ./config.status
-
$(
TMP_LIBDIR
)/testsuite
.lpc
: $(
TMP_BINDIR
)/create_testsuite
-
$(
TMP_BINDIR
)/create_testsuite >$(
TMP_LIBDIR
)/testsuite
.lpc
+
$(
SRCDIR
)/
test/
testsuite: $(
SRCDIR
)/
test/
create_testsuite
+
m4 <
$(
SRCDIR
)/
test/
create_testsuite >$(
SRCDIR
)/
test/
testsuite
#Dependencies begin here, DO NOT REMOVE THIS LINE!!!!
-
add_efun.o: add_efun.c add_efun.h svalue.h types.h machine.h \
-
hashtable.h las.h config.h dynamic_buffer.h program.h macros.h \
-
memory.h lpc_types.h stralloc.h interpret.h
+
language.o: language.c global.h machine.h \
+
config.h debug.h \
+
port.h interpret.h \
+
program.h array.h \
+
las.h svalue.h \
+
dynamic_buffer.h object.h \
+
stralloc.h lex.h \
+
lpc_types.h
add_efun.
h \
+
hashtable.h macros.h \
+
error.h docode.h
+
add_efun.
o: add_efun.c add_efun.h
\
+
svalue.h types.h machine.h \
+
hashtable.h las.h
\
+
config.h dynamic_buffer.h
\
+
program.h macros.h \
+
memory.h lpc_types.h
\
+
stralloc.h interpret.h
alloca.o: alloca.c
-
array.o: array.c global.h
machine.h config.h debug.h types.h port.h
\
-
svalue.h
array.h las.h dynamic_buffer.h program.h object.h stralloc.h \
-
interpret.h language.h error.h lpc_types.h fsort.h builtin_efuns.h \
-
memory.h
-
backend.o: backend.c global.h
machine.h config.h debug.h
types.h
\
-
port.h
interpret.h program.h object.h
svalue.h
error.h call_out.h
\
-
backend.h
fd_control.h main.h callback.h
array.h las.h \
-
dynamic_buffer.h
-
builtin_efuns.o:
builtin_efuns.c global.h machine.h config.h debug.h \
-
types.h port.h interpret.h
program.h
svalue.h macros.h memory.h
\
-
object.h
array.h las.h dynamic_buffer.h error.h add_efun.h \
-
hashtable.h mapping.h
stralloc.h
lex.h list.h lpc_types.h rusage.h
\
-
operators.h
fsort.h call_out.h callback.h
-
call_out.o: call_out.c global.h machine.h config.h debug.h types.h \
-
port.h array.h las.h svalue.h dynamic_buffer.h program.h call_out.h \
-
object.h
interpret.h
error.h builtin_efuns.h memory.h main.h
-
callback.o: callback.c macros.h memory.h types.h machine.h callback.h \
-
array.h las.h config.h svalue.h dynamic_buffer.h program.h
-
debug.o: debug.c global.h machine.h config.h debug.h types.h port.h \
-
memory.h
-
docode.o: docode.c global.h machine.h config.h debug.h types.h port.h \
-
las.h svalue.h dynamic_buffer.h program.h
language.h
lpc_types.h \
-
stralloc.h interpret.h add_efun.h hashtable.h array.h macros.h \
-
memory.h
error.h
main.h lex.h builtin_efuns.h
-
dynamic_buffer.o: dynamic_buffer.c global.h machine.h config.h debug.h
\
-
types.h
port.h dynamic
_
buffer.h stralloc.h error.h svalue.h memory.h
-
error.o: error.c global.h machine.h config.h debug.h
types.h
port
.h \
-
macros.h
memory.h error.h svalue.h interpret.h program.h stralloc.h \
-
builtin_efuns.h
array.h las.h dynamic_buffer.h object.h
-
fd_control
.o:
fd_control
.c
fd_control.h
global.h
machine.h config.h
\
-
debug.h
types.h port.h
-
fsort.o: fsort.c global.h
machine.h config.h debug.h
types.h port.h
\
-
fsort.h
-
hashtable.o:
hashtable.c global.h machine.h config.h debug.h types.h \
-
port.h
hashtable.h stralloc.h stuff.h error.h svalue.h
-
interpret.
o: interpret.c global.
h
machine.h config.h debug.h types.h
\
-
port.h
interpret.h
program.h object.h
svalue.h array.h las.h
\
-
dynamic_buffer.h
mapping
.h error.h
language.h stralloc.h add_efun.h
\
-
hashtable.h
macros
.h
memory.h list.h
backend.h
operators.h opcodes.h
\
-
main.h
lex.h builtin
_
efuns
.h
lpc_signal
.h
-
language.o:
language.c global.h machine.h config.h debug.h
\
-
port.h
interpret
.h
program.h
array.h
las.h svalue.h
\
-
dynamic_buffer.h
object.h stralloc.h lex.h lpc_types.h \
-
add_efun.h hashtable.h macros.h error.h docode.h
-
las.
o: las.c global.
h
machine.h config.h debug.h types.h port.h \
-
language.h interpret.h program.h las.h svalue.h
dynamic_buffer.h
\
-
array.h object.h stralloc.h lex.h lpc_types.h add_efun.h hashtable.h \
-
mapping.h list.h error.h docode.h main.h memory.h
-
lex.o: lex.c global.h machine.h config.h debug.h types.h port.h \
-
language.h array.h las.h svalue.h dynamic_buffer.h program.h lex.h \
-
stralloc.h add_efun.h hashtable.h stuff.h memory.h interpret.h \
-
error.h object.h operators.h opcodes.h
builtin_efuns.
h macros.h
-
list.
o:
list.c global.h machine.h config.h debug.h types.h port.h \
-
array.h las.h svalue.h dynamic_buffer.h program.h list.h macros.h \
-
memory.h error.h interpret.h
builtin_efuns.
h
-
lpc_signal.o: lpc_signal.
c
global.h machine.h config.h debug.h types.h
\
-
port.h
svalue.h interpret.h program.h stralloc.h add_efun.h \
-
hashtable.h las.h dynamic_buffer.h macros.h memory.h backend.h
-
lpc_types.o: lpc_types.c
global.h machine.h config.h
debug.h types.h
\
-
port.h
svalue.h lpc_types.h stralloc.h stuff.h array.h las.h \
-
dynamic_buffer.h program.h add_efun.h hashtable.h object.h list.h \
-
mapping.h macros.h memory.h error.h
-
main.o: main.c global.h machine.h config.h
debug.h
types.h
port.h \
-
backend.h
module.h object.h svalue.h lex.h lpc_types.h \
-
builtin_efuns.h array.h las.h dynamic_buffer.h program.h stralloc.h \
-
interpret.h
error.h macros.h memory.h callback.h lpc_signal.h
-
mapping.o: mapping.c global.h machine.h config.h debug.h types.h \
-
port.h mapping.h las.h svalue.h dynamic_buffer.h
program.h
array.h
\
-
macros.h
memory.h language.h error.h interpret.h
-
memory.o: memory.c global.h machine.h config.h debug.h types.h port.h \
-
memory.h error.h
svalue.h
-
module.o:
module.c module.h types.h machine.h
macros.h
memory.h
\
-
error.h
svalue.h modlist.h
-
object.
o: object.c global.
h
machine
.h
config.h debug.h types.h port.h
\
-
object.h
svalue.h dynamic_buffer.h interpret.h program.h stralloc.h \
-
macros.h memory.h error.h main.h
-
opcodes.o: opcodes.c global.h machine.h config.h debug.h types.h \
-
port.h interpret.h program.h svalue.h array.h
las.h dynamic_buffer.h \
-
stralloc.h
mapping.h list.h opcodes.h object.h
error.h
lpc
_
types
.h
-
operators.o:
operators.c global.h machine.h config.h debug.h types.h
\
-
port.h
interpret
.h
program.h svalue.h list.h las.h dynamic_buffer.h \
-
mapping.h
array.h stralloc.h opcodes.h operators.h language.h
\
-
memory.h
error.h
-
port.o: port.c global.h machine.h config.h debug.h types.h port.h \
-
macros.h memory.h
-
program.o: program.c global.h machine.h config.h debug.h types.h \
-
port.h program.h object.h svalue.h dynamic_buffer.h lpc_types.h \
-
stralloc.h
las.h language.h
lex.h
macros.h memory.h fsort.h error.h
\
-
docode.h
interpret.h hashtable.h main.h compilation.h
-
rusage.o: rusage.c global.h machine.h config.h debug.h types.h port.h \
-
rusage.h
-
stralloc.o: stralloc.c global.h machine.h config.h debug.h types.h \
-
port.h stralloc.h macros.h memory.h dynamic_buffer.h error.h svalue.h
-
stuff.o: stuff.c stuff.h types.h machine.h
-
svalue.o: svalue.c global.h machine.h config.h debug.h types.h port.h \
-
svalue.h stralloc.h array.h las.h dynamic_buffer.h program.h \
-
mapping.h
list.h
object.h add_efun.h hashtable.h error.h
-
ualarm.o: ualarm.c
-
add_efun.o: add_efun.c add_efun.h svalue.h types.h machine.h \
-
hashtable.h las.h config.h dynamic_buffer.h program.h \
-
macros.h memory.h
lpc_types.h
stralloc.h interpret.h
-
alloca.o: alloca.c
-
array.o: array.c global.h machine.h config.h debug.h
\
-
port.h
svalue
.h
array
.h
las.h dynamic_buffer.h program.h
\
-
object.h
stralloc.h interpret.h language.h error.h \
-
lpc_types.h
fsort.h
builtin_efuns.h
-
backend.o: backend.c global.h machine.h config.h debug.h \
-
port.h interpret.h program.h object.h svalue.h error.h \
-
call_out.h
backend.h fd_control.h main.h callback.h
\
-
array.h las.h dynamic_buffer.h
-
builtin_efuns.o: builtin_efuns.c global.h machine.h config.h \
-
debug.h port.h interpret.h program.h svalue.h macros.h \
-
object.h array.h las.h dynamic_buffer.h error.h \
-
add_efun.h hashtable.h mapping.h stralloc.h lex.h list.h \
-
lpc_types.h rusage.h operators.h fsort.h call_out.h \
+
array.o: array.c global.h \
+
machine.h config.h debug.h \
+
port.h svalue.h \
+
array.h las.h \
+
dynamic_buffer.h
program
.h \
+
object.h stralloc.h \
+
interpret.h language.h error.h \
+
lpc
_types.h
fsort
.h \
+
builtin_efuns.h
+
backend
.o:
backend
.c global.h \
+
machine.h config.h debug.h \
+
port.h interpret.h \
+
program.h object.h \
+
svalue
.h error.h \
+
call_out
.h backend.h \
+
fd
_
control
.h
main
.h \
+
callback
.h array.h \
+
las.h dynamic_buffer.h
+
builtin_efuns.o: builtin_efuns.c \
+
global.h machine.h config.h \
+
debug.h port.h \
+
interpret.h program.h \
+
svalue.h macros.h \
+
object.h
array
.h \
+
las.h dynamic_buffer.h \
+
error.h
add
_
efun
.h \
+
hashtable
.h mapping.h \
+
stralloc.h lex.h \
+
list.h lpc_types.h \
+
rusage
.h
operators
.h \
+
fsort.h call_out.h \
callback.h
-
call_out.o: call_out.c global.h machine.h config.h debug.h \
-
port.h array.h las.h svalue.h dynamic_buffer.h program.h \
-
call_out.h object.h interpret.h error.h builtin_efuns.h
\
-
main.h
-
callback.o: callback.c macros.h memory.h types.h machine.h \
-
callback.h array.h las.h config.h svalue.h
\
-
dynamic_buffer.h program.h
-
debug.o: debug.c global.h machine.h config.h debug.h \
+
call_out.o: call_out.c global.h
\
+
machine.h config.h debug.h \
+
port.h array.h
\
+
las.h svalue.h
\
+
dynamic_buffer.h program.h \
+
call_out.h object.h
\
+
interpret.h error.h
\
+
builtin_efuns.h main.h
+
callback.o: callback.c macros.h
\
+
memory.h types.h machine.h \
+
callback.h array.h
\
+
las.h config.h
\
+
svalue.h dynamic_buffer.h
\
+
program.h
+
debug.o: debug.c global.h
\
+
machine.h config.h debug.h \
port.h
-
docode.o: docode.c global.h machine.h config.h debug.h \
-
port.h las.h svalue.h dynamic_buffer.h program.h
\
-
language.h lpc_types.h stralloc.h interpret.h add_efun.h \
-
hashtable.h array.h macros.h error.h main.h lex.h \
+
docode.o: docode.c global.h
\
+
machine.h config.h debug.h \
+
port.h las.h
\
+
svalue.h dynamic_buffer.h
\
+
program.h language.h
\
+
lpc_types.h stralloc.h
\
+
interpret.h add_efun.h \
+
hashtable.h array.h
\
+
macros.h error.h
\
+
main.h lex.h \
builtin_efuns.h
-
dynamic_buffer.o: dynamic_buffer.c global.h machine.h config.h \
-
debug.h port.h dynamic_buffer.h stralloc.h error.h
\
-
svalue.h
-
error.o: error.c global.h machine.h config.h debug.h \
-
port.h macros.h error.h svalue.h interpret.h program.h \
-
stralloc.h builtin_efuns.h array.h las.h dynamic_buffer.h
\
-
object.h
-
fd_control.o: fd_control.c fd_control.h global.h machine.h
\
-
config.h debug.h port.h
-
fsort.o: fsort.c global.h machine.h config.h debug.h \
+
dynamic_buffer.o: dynamic_buffer.c
\
+
global.h machine.h config.h \
+
debug.h port.h
\
+
dynamic_buffer.h stralloc.h
\
+
error.h svalue.h
+
error.o: error.c global.h
\
+
machine.h config.h debug.h \
+
port.h macros.h
\
+
error.h svalue.h
\
+
interpret.h program.h \
+
stralloc.h builtin_efuns.h
\
+
array.h las.h
\
+
dynamic_buffer.h object.h
+
fd_control.o: fd_control.c
\
+
fd_control.h global.h
\
+
machine.h config.h debug.h
\
+
port.h
+
fsort.o: fsort.c global.h
\
+
machine.h config.h debug.h \
port.h fsort.h
-
hashtable.o: hashtable.c global.h machine.h config.h debug.h \
-
port.h hashtable.h stralloc.h stuff.h error.h svalue.h
-
interpret.o: interpret.c global.h machine.h config.h debug.h \
-
port.h interpret.h program.h object.h svalue.h array.h \
-
las.h dynamic_buffer.h mapping.h error.h language.h \
-
stralloc.h add_efun.h hashtable.h macros.h list.h
\
-
backend.h operators.h opcodes.h main.h lex.h \
+
hashtable.o: hashtable.c global.h
\
+
machine.h config.h debug.h \
+
port.h hashtable.h
\
+
stralloc.h stuff.h
\
+
error.h svalue.h
+
interpret.o: interpret.c global.h
\
+
machine.h config.h debug.h \
+
port.h interpret.h
\
+
program.h object.h
\
+
svalue.h array.h \
+
las.h dynamic_buffer.h
\
+
mapping.h error.h language.h \
+
stralloc.h add_efun.h
\
+
hashtable.h macros.h
\
+
list.h backend.h
\
+
operators.h opcodes.h
\
+
main.h lex.h \
builtin_efuns.h lpc_signal.h
-
language
.o:
language
.c global.h machine.h
config.h debug.h
\
-
port.h
interpret
.h
program
.h
array.h las.h svalue.h
\
-
dynamic_buffer.h
object
.h
stralloc
.h
lex
.h
lpc_types.h
\
-
add_efun.h
hashtable
.h
macros.h error.h docode.h
-
las.
o: las.c global.
h
machine.h config.h debug.h port.h
\
-
language.h
interpret.h program.h las.h
svalue.h
\
-
dynamic_buffer.h array.h object.h stralloc.h lex.h \
-
lpc_types.h add_efun.h hashtable.h mapping.h list.h
\
-
error.h docode.h main.h
-
lex.o: lex.c global.h machine.h config.h debug.h port.h
\
-
language.h array.h las.h svalue.h dynamic_buffer.h
\
-
program.h lex.h stralloc.h add_efun.h hashtable.h stuff.h
\
-
interpret.h error.h object.h operators.h opcodes.h \
+
las
.o:
las
.c global.h machine.h \
+
config
.h
debug
.h \
+
port
.h
language
.h
interpret
.h \
+
program
.h
las
.h
\
+
svalue
.h
dynamic_buffer
.h \
+
array
.h
object
.h \
+
stralloc.h lex.h \
+
lpc_types.h add_efun.h
\
+
hashtable.h mapping.h
\
+
list.h error.h
\
+
docode.h main.h
+
lex.o: lex.c global.h machine.h
\
+
config.h debug.h
\
+
port.h language.h array.h
\
+
las.h svalue.h
\
+
dynamic_buffer.h program.h
\
+
lex.h stralloc.h
\
+
add_efun.h hashtable.h
\
+
stuff.h interpret.h
\
+
error.h object.h
\
+
operators.h opcodes.h \
builtin_efuns.h macros.h
-
list.o: list.c global.h machine.h config.h debug.h port.h
\
-
array.h las.h svalue.h dynamic_buffer.h program.h list.h
\
-
macros.h error.h interpret.h builtin_efuns.h
-
lpc_signal.o: lpc_signal.c global.h machine.h config.h \
-
debug.h port.h svalue.h interpret.h program.h stralloc.h \
-
add_efun.h hashtable.h las.h dynamic_buffer.h macros.h
\
-
backend.h
-
lpc_types.o: lpc_types.c global.h machine.h config.h debug.h \
-
port.h svalue.h lpc_types.h stralloc.h stuff.h array.h \
-
las.h dynamic_buffer.h program.h add_efun.h
hashtable.h
\
-
object.h
list
.h
mapping.h macros.h error.h
-
main.o: main.c global.h machine.h config.h debug.h port.h \
-
backend.h module.h
object.h
svalue.h lex.h lpc_types.h
\
-
builtin_efuns.h
array
.h
las
.h
dynamic_buffer.h program.h
\
-
stralloc.h
interpret
.h error.h
macros.h callback.h \
-
lpc_signal
.
h
-
mapping.
o:
mapping
.c global.h machine.h config.h debug.h \
-
port.h
mapping
.h
las.h svalue.h dynamic_buffer.h
\
-
program.h
array
.h
macros
.h
language.h error.h interpret.h
-
memory.o:
memory.c
global
.h
machine
.h
config.h debug.h
\
-
port.h
error.h svalue.h
-
module.o: module.c module.h
types.h
machine
.h
macros.h
\
-
memory.h
error
.h
svalue
.h
modlist.h
-
object.o: object.c global.h machine.h config.h debug.h
\
-
port.h
object.h svalue.h
dynamic_buffer.h
interpret
.h \
-
program.h
stralloc.h
macros.h error.h main.h
-
opcodes.o: opcodes.c global.h machine.h config.h debug.h \
-
port.h
interpret.h
program.h svalue.h array.h las.h
\
-
dynamic_buffer.h
stralloc
.h
mapping
.h
list.h opcodes.h
\
-
object.h
error
.h lpc_
types
.h
-
operators
.o:
operators
.c global.h
machine.h config.h debug.h
\
-
port.h
interpret
.h
program
.h
svalue
.h
list.h las.h
\
-
dynamic_buffer.h
mapping.h array.h stralloc.h opcodes.h \
-
operators.h language.h error.h
-
port.
o: port.c global.
h
machine
.h
config.h debug.h port.h
\
-
macros.h
-
program.o:
program
.
c global.
h
machine
.h
config.h debug.h
\
-
port.h
program.h object.h svalue.h
dynamic_buffer.h \
-
lpc_types.h
stralloc
.h
las
.h language.h
lex.h macros.h
\
-
fsort.h
error.h
docode.h
interpret.h
hashtable.h main.h \
-
compilation
.
h
-
rusage.
o:
rusage
.c global.h
machine.h config.h debug.h
\
-
port.h
rusage.h
-
stralloc.o: stralloc.c global.h
machine.h config.h debug.h \
-
port.h
stralloc.h macros.h dynamic_buffer.h
error.h \
+
list.o: list.c global.h
\
+
machine.h config.h debug.h
\
+
port.h array.h
\
+
las.h svalue.h
\
+
dynamic_buffer.h program.h
\
+
list.h macros.h
\
+
error.h interpret.h
\
+
builtin_efuns.h
+
lpc_signal.o: lpc_signal.c
\
+
global.h machine.h config.h \
+
debug.h port.h
\
+
svalue.h interpret.h
\
+
program.h stralloc.h \
+
add_efun.h hashtable.h
\
+
las.h dynamic_buffer.h
\
+
macros.h backend.h
+
lpc_types.o: lpc_types.c global.h
\
+
machine.h config.h debug.h \
+
port.h svalue.h
\
+
lpc_types.h stralloc.h
\
+
stuff.h array.h \
+
las.h dynamic_buffer.h
\
+
program.h add_efun.h \
+
hashtable
.h object.h \
+
list
.h
mapping
.h \
+
macros
.h error.h
+
main
.o:
main
.c global.h
\
+
machine.h config.h debug.h \
+
port.h
backend
.h \
+
module
.h
object
.h
\
+
svalue
.h
lex
.h \
+
lpc_
types.h
builtin_efuns
.h \
+
array
.h
las
.h \
+
dynamic_buffer.h
program
.h \
+
stralloc.h interpret.h \
+
error
.h
macros
.h \
+
callback
.h lpc_
signal
.h
+
mapping
.o:
mapping
.c global.h
\
+
machine.h config.h debug.h \
+
port.h mapping.h \
+
las
.h
svalue
.h \
+
dynamic_buffer
.h program.h \
+
array
.h
macros
.h language.h \
+
error.h interpret.h
+
memory
.o:
memory
.c global.h \
+
machine.h config.h debug.h \
+
port.h error.h \
svalue.h
-
stuff.o: stuff.c stuff.h types.h machine.h
-
svalue.o: svalue.c global.h machine.h config.h debug.h \
-
port.h svalue.h stralloc.h array.h las.h dynamic_buffer.h \
-
program.h mapping.h list.h object.h add_efun.h
\
-
hashtable.h error.h
+
module.o: module.c module.h \
+
types.h machine.h macros.h \
+
memory.h error.h \
+
svalue.h modlist.h
+
object.o: object.c global.h \
+
machine.h config.h debug.h \
+
port.h object.h \
+
svalue.h dynamic_buffer.h \
+
interpret.h program.h \
+
stralloc.h macros.h \
+
error.h main.h
+
opcodes.o: opcodes.c global.h \
+
machine.h config.h debug.h \
+
port.h interpret.h \
+
program.h svalue.h \
+
array.h las.h \
+
dynamic_buffer.h stralloc.h \
+
mapping.h list.h \
+
opcodes.h object.h \
+
error.h lpc_types.h
+
operators.o: operators.c global.h \
+
machine.h config.h debug.h \
+
port.h interpret.h \
+
program.h svalue.h \
+
list.h las.h \
+
dynamic_buffer.h mapping.h \
+
array.h stralloc.h \
+
opcodes.h operators.h \
+
language.h error.h
+
port.o: port.c global.h \
+
machine.h config.h debug.h \
+
port.h macros.h
+
program.o: program.c global.h \
+
machine.h config.h debug.h \
+
port.h program.h \
+
object.h svalue.h \
+
dynamic_buffer.h lpc_types.h \
+
stralloc.h las.h language.h \
+
lex.h macros.h \
+
fsort.h error.h \
+
docode.h interpret.h \
+
hashtable.h compilation.h
+
rusage.o: rusage.c global.h \
+
machine.h config.h debug.h \
+
port.h rusage.h
+
stralloc.o: stralloc.c global.h \
+
machine.h config.h debug.h \
+
port.h stralloc.h \
+
macros.h dynamic_buffer.h \
+
error.h svalue.h
+
stuff.o: stuff.c stuff.h
\
+
types.h machine.h
+
svalue.o: svalue.c global.h
\
+
machine.h config.h debug.h \
+
port.h svalue.h
\
+
stralloc.h array.h
\
+
las.h dynamic_buffer.h \
+
program.h mapping.h
\
+
list.h object.h
\
+
add_efun.h hashtable.h
\
+
error.h
ualarm.o: ualarm.c