head	1.21;
access;
symbols
	Release-0:1.1.1.1 jm:1.1.1;
locks; strict;
comment	@# @;


1.21
date	2002.04.30.02.44.30;	author james;	state Exp;
branches;
next	1.20;

1.20
date	2002.04.30.01.57.41;	author james;	state Exp;
branches;
next	1.19;

1.19
date	2002.04.21.03.42.59;	author james;	state Exp;
branches;
next	1.18;

1.18
date	2002.04.11.17.50.22;	author jm;	state Exp;
branches;
next	1.17;

1.17
date	2002.04.06.16.05.43;	author jm;	state Exp;
branches;
next	1.16;

1.16
date	2002.04.05.00.35.13;	author jm;	state Exp;
branches;
next	1.15;

1.15
date	2002.01.06.05.25.58;	author james;	state Exp;
branches;
next	1.14;

1.14
date	2001.10.08.02.56.53;	author james;	state Exp;
branches;
next	1.13;

1.13
date	2001.04.11.18.37.21;	author james;	state Exp;
branches;
next	1.12;

1.12
date	2001.04.11.17.26.31;	author james;	state Exp;
branches;
next	1.11;

1.11
date	2001.03.15.05.11.02;	author james;	state Exp;
branches;
next	1.10;

1.10
date	2001.03.13.18.49.51;	author jm;	state Exp;
branches;
next	1.9;

1.9
date	2001.03.12.12.50.01;	author jm;	state Exp;
branches;
next	1.8;

1.8
date	2001.03.07.14.25.18;	author jm;	state Exp;
branches;
next	1.7;

1.7
date	2001.02.24.17.18.02;	author jm;	state Exp;
branches;
next	1.6;

1.6
date	2001.02.21.14.23.36;	author jm;	state Exp;
branches;
next	1.5;

1.5
date	2001.02.21.14.17.13;	author jm;	state Exp;
branches;
next	1.4;

1.4
date	2001.02.21.14.13.03;	author jm;	state Exp;
branches;
next	1.3;

1.3
date	2001.02.21.14.03.21;	author jm;	state Exp;
branches;
next	1.2;

1.2
date	2001.02.18.23.38.44;	author jm;	state Exp;
branches;
next	1.1;

1.1
date	2001.02.18.21.48.17;	author jm;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	2001.02.18.21.48.17;	author jm;	state Exp;
branches;
next	;


desc
@@


1.21
log
@Added docs directory as target.  Now from toplevel you can 'make docs'
and it will recurse and make.  The distclean target will also recurse
and clean.
@
text
@# -*- Mode: Makefile; coding: iso-8859-1 -*-
#

# Debugging with GCC.
CFLAGS = -O0 -ggdb3 -pg -Wall -DPARANOID

# Debugging with random C++ compilers.
#CFLAGS = -g -p -Wall -DPARANOID

# Optimization with GCC.
#CFLAGS = -O3 -Wall

# Optimization with random C++ compilers.
#CFLAGS = -O3 -p

# Include directories.
INCLUDES = -I/usr/include/g++

TARGET = e3

HEADERS = \
 app.h \
 band.h \
 config.h \
 lispm.h \
 macroop.h \
 memmap.h \
 memobj.h \
 dpmtentry.h \
 types.h \
 word.h

SOURCES = \
 app.cc \
 band.cc \
 e3.cc \
 lispm.cc \
 macroop.cc \
 mainops.cc \
 memmap.cc \
 memobj.cc \
 dpmtentry.cc \
 types.cc \
 word.cc

OBJECTS := $(SOURCES:.cc=.o)

.SUFFIXES : .o .cc

.PHONY : tags docs clean distclean cycle

all : $(TARGET)

test : all
	./$(TARGET)
	gprof ./$(TARGET) | tee gprof.log

docs :
	cd docs && make

$(OBJECTS) : depend

$(TARGET) : $(OBJECTS)
	$(CXX) $(CFLAGS) -o $(TARGET) $(OBJECTS)

depend : $(SOURCES)
	makedepend $(INCLUDES) -f- -o .o $(IFLAGS) $(SOURCES) > depend.mk

.cc.o :
	$(CXX) $(CFLAGS) -c $*.cc

tags :
	etags $(HEADERS) $(SOURCES) 

clean :
	rm -f $(TARGET) $(OBJECTS)

distclean : clean
	rm -f depend.mk TAGS *~ gprof.log gmon.out
	cd docs && make distclean

cycle : clean all

-include depend.mk
@


1.20
log
@Added $(INCLUDES) and used this in the depend target.  Not in the .cc.o
since it doesn't seem necessary so far.
@
text
@d50 2
d58 3
d80 1
@


1.19
log
@Changed makedepend stuff.  Now the rule no longer results in
makedepend expecting an existing depend.mk file; instead it writes to
stdout which is redirected to the file, however this no longer makes
backups of existing depend.mk files.

Added - in front of include to prevent lossage when depend.mk doesn't
exist.  When it doesn't the $(OBJECTS) rule should catch the lack and
call the depend rule.  This means you don't have to do a make depend
before your make anymore.

Added a distclean rule that cleans up more than the regular clean.
This will obliterate a lot of things, so don't use it if you don't
want it.
@
text
@d16 3
d62 1
a62 1
	makedepend -f- -o .o $(IFLAGS) $(SOURCES) > depend.mk
@


1.18
log
@
Added two rules to each makefile that, with any luck (ha), will cause
the depend.mk to be built if either it doesn't exist or if it's older
than any of the sources.  james said he'll take care of CVS issues
with depend.mk, but this should help a little bit.
@
text
@d1 3
d10 4
a13 1
# Optimiztion with random C++ compilers.
d16 1
a16 1
TARGET=e3
d18 1
a18 1
HEADERS=\
d30 1
a30 1
SOURCES=\
d49 1
a49 1
test : $(TARGET)
d53 2
d58 2
a59 8
#
# Without -o switch, getting "foo..o" instead of "foo.o"
# Let me know if this breaks your platform's Makefile!
# -jm 2002-04-05
depend.mk: $(SOURCES)
	makedepend -f depend.mk -o o $(IFLAGS) $(SOURCES)

Makefile: depend.mk
d61 2
a62 2
#depend : 
#	makedepend -f depend.mk -o o $(SOURCES)
d70 2
a71 2
.cc.o :
	$(CXX) $(CFLAGS) -c $*.cc
d75 1
a75 1
include depend.mk
@


1.17
log
@
All right.  Lotsa changes.  Changed how makefiles called makedepend
and maintained dependency files -- the old way added an extra period
in the suffix, so it was essentially useless on my RH7.2 installation
-- let me know if this is platform-specific and I inadvertantly broke
something on you (FreeBSD guys, etc.). I added a Makefile.inc to the
top-level directory so the e3 sources could be referenced from each of
the build-target directories (one might want to build many targets on
one box -- especially when cross-compiling for bare iron, and
therefore I store the build-target-specific object files in the build
target directory).  I tried to reduce the number of platform-specific
include files in band.h/cc etc -- if stdlib.h sufficed, then I removed
all the other ones (this may have broken something on other platforms
-- let me know).  I also told cpp for the i386 build target to NOT
search the standard include file directories so I could get it to grab
the workalike system include files from the build-target-specific
directory -- however I may have to change this for the stdarg.h
because that is compiler-specific rather than target-specific (remains
to be seen).  I also added Makefile.gc so that the conservative GC
files could be referenced from the build target directories although
that whole thing might never be used (but it is used right now, and
I'd prefer to make incremental changes and pull it out later).
Finally, I added stubs for the fstream.h stuff used to load the band
although that may be changed later (I am pretty sure I do not want to
read the band a byte at a time when Etherboot has already put it in
memory for the i386 platform, and GRUB-like loaders that go to disk
might not support C++ streams, so I'd have to change that anyways).
@
text
@d54 7
a60 2
depend : 
	makedepend -f depend.mk -o o $(SOURCES)
@


1.16
log
@

Am trying to integrate the existing UNIX-centric e3 with the x86 PC
stuff.  Split the DPMT entry stuff out from the band proper, which
resulted in two new files.  Added a Makefile.inc in e3 which will be
included from the build target directories.  Changed the i386 console
stuff to not write to a text-mode VGA screen but instead write to the
COM1 serial port.
@
text
@d50 4
d55 1
a55 1
	makedepend -f depend.mk -Y $(SOURCES)
a58 6

checkin :
	for FILE in Makefile $(HEADERS) $(SOURCES) ; do echo "Makefile checkin" | ci -l $$FILE ; done

diff :
	for FILE in Makefile $(HEADERS) $(SOURCES) ; do rcsdiff $$FILE ; done
@


1.15
log
@Commenting out references to stuff in physmemregion.* since it is no
longer in use (and no longer useful?).
@
text
@d20 1
d33 1
@


1.14
log
@Flushed error.* and throwable.*.
@
text
@a19 1
 physmemregion.h \
a31 1
 physmemregion.cc \
@


1.13
log
@Added support for GCC's debugging options and added a few comments for
the different flavors of CFLAGS.
@
text
@a15 1
 error.h \
a20 1
 throwable.h \
a27 1
 error.cc \
a33 1
 throwable.cc \
@


1.12
log
@Added error and throwable to the headers and source files.
@
text
@d1 2
a2 1
VARIANTS = 
d4 5
a8 2
CFLAGS = -g -p -Wall -DPARANOID $(VARIANTS)
#CFLAGS = -O3 -p $(VARIANTS)
d43 1
a43 1
.SUFFIXES: .o .cc
d45 1
a45 1
all: $(TARGET)
d47 1
a47 1
test: $(TARGET)
d51 1
a51 1
$(TARGET): $(OBJECTS)
d54 1
a54 1
depend: 
d57 1
a57 1
tags:
d60 1
a60 1
checkin:
d63 1
a63 1
diff:
d66 1
a66 1
clean:
d69 1
a69 1
.cc.o:
d71 2
@


1.11
log
@Changed makefile to not immediately *RUN* the binary on completing
compile.  This behavior is now done by the 'test' target.  Also,
running 'e3' is now done from the current directory.  This way other
programs called 'e3' won't be run erroneously.
@
text
@d12 1
d18 1
d26 1
d33 1
@


1.10
log
@
Changed makefile depend rule to pass '-Y' flag to makedepend.
This will prevent searching "standard" directories, making the depend.mk
file safe to CVS commit (i.e., platform-independent).
@
text
@d38 4
a41 2
	$(TARGET)
	gprof $(TARGET) | tee gprof.log
@


1.9
log
@the
Added mainops.cc.
Rewrote macroinstruction stuff using templates.
@
text
@d45 1
a45 1
	makedepend -f depend.mk $(SOURCES)
@


1.8
log
@
Changed to use built-in CXX macro to get C++ compiler.
Enables people to use native one.
@
text
@d26 1
@


1.7
log
@
Fixes to makefile.
Got rid of (hopefully) last of VLM*.
Use inttypes.h to get precisely-sized integers.
@
text
@a0 2
CPLUSPLUS = g++

d41 1
a41 1
	$(CPLUSPLUS) $(CFLAGS) -o $(TARGET) $(OBJECTS)
d59 1
a59 1
	$(CPLUSPLUS) $(CFLAGS) -c $*.cc
@


1.6
log
@
Seems to really want to remake depend.mk.
@
text
@d1 2
d43 1
a43 4
	g++ $(CFLAGS) -o $(TARGET) $(OBJECTS)

#depend.mk: Makefile $(HEADERS) $(SOURCES)
#	makedepend -I/usr/include/g++-2 $(SOURCES)
d45 1
a45 1
depend.mk: 
d61 1
a61 1
	g++ $(CFLAGS) -c $*.cc
@


1.5
log
@
Gotta stop the makefile from triggering makedepend which isn't on the sparc.
@
text
@d43 1
a43 1
depend.mk: Makefile $(HEADERS) $(SOURCES)
d45 2
@


1.4
log
@
Fixes to makefile, depend.mk.
@
text
@d36 1
a36 1
all: depend.mk $(TARGET)
@


1.3
log
@
First attempt at big-endian fixes.
@
text
@d36 1
a36 1
all: Makefile $(TARGET)
d43 3
a45 2
Makefile: $(HEADERS) $(SOURCES)
	makedepend -I/usr/include/g++-2 $(SOURCES)
a62 122
# DO NOT DELETE

app.o: /usr/include/g++-2/iostream.h /usr/include/g++-2/streambuf.h
app.o: /usr/include/libio.h /usr/include/_G_config.h
app.o: /usr/include/bits/types.h /usr/include/features.h
app.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h
app.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stddef.h
app.o: /usr/include/bits/pthreadtypes.h /usr/include/bits/sched.h
app.o: /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h
app.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stdarg.h
app.o: /usr/include/unistd.h /usr/include/bits/posix_opt.h
app.o: /usr/include/bits/confname.h /usr/include/getopt.h
app.o: /usr/include/string.h /usr/include/stdlib.h /usr/include/sys/types.h
app.o: /usr/include/time.h /usr/include/endian.h /usr/include/bits/endian.h
app.o: /usr/include/sys/select.h /usr/include/bits/select.h
app.o: /usr/include/bits/sigset.h /usr/include/sys/sysmacros.h
app.o: /usr/include/alloca.h app.h
band.o: /usr/include/g++-2/iostream.h /usr/include/g++-2/streambuf.h
band.o: /usr/include/libio.h /usr/include/_G_config.h
band.o: /usr/include/bits/types.h /usr/include/features.h
band.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h
band.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stddef.h
band.o: /usr/include/bits/pthreadtypes.h /usr/include/bits/sched.h
band.o: /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h
band.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stdarg.h
band.o: /usr/include/unistd.h /usr/include/bits/posix_opt.h
band.o: /usr/include/bits/confname.h /usr/include/getopt.h
band.o: /usr/include/stdlib.h /usr/include/sys/types.h /usr/include/time.h
band.o: /usr/include/endian.h /usr/include/bits/endian.h
band.o: /usr/include/sys/select.h /usr/include/bits/select.h
band.o: /usr/include/bits/sigset.h /usr/include/sys/sysmacros.h
band.o: /usr/include/alloca.h band.h /usr/include/g++-2/fstream.h memmap.h
band.o: word.h types.h config.h
e3.o: /usr/include/stdlib.h /usr/include/features.h /usr/include/sys/cdefs.h
e3.o: /usr/include/gnu/stubs.h
e3.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stddef.h
e3.o: /usr/include/sys/types.h /usr/include/bits/types.h
e3.o: /usr/include/bits/pthreadtypes.h /usr/include/bits/sched.h
e3.o: /usr/include/time.h /usr/include/endian.h /usr/include/bits/endian.h
e3.o: /usr/include/sys/select.h /usr/include/bits/select.h
e3.o: /usr/include/bits/sigset.h /usr/include/sys/sysmacros.h
e3.o: /usr/include/alloca.h app.h lispm.h macroop.h memmap.h
e3.o: /usr/include/g++-2/iostream.h /usr/include/g++-2/streambuf.h
e3.o: /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h
e3.o: /usr/include/bits/wchar.h /usr/include/gconv.h
e3.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stdarg.h word.h
e3.o: /usr/include/g++-2/fstream.h types.h config.h
lispm.o: /usr/include/g++-2/iostream.h /usr/include/g++-2/streambuf.h
lispm.o: /usr/include/libio.h /usr/include/_G_config.h
lispm.o: /usr/include/bits/types.h /usr/include/features.h
lispm.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h
lispm.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stddef.h
lispm.o: /usr/include/bits/pthreadtypes.h /usr/include/bits/sched.h
lispm.o: /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h
lispm.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stdarg.h
lispm.o: /usr/include/g++-2/fstream.h /usr/include/unistd.h
lispm.o: /usr/include/bits/posix_opt.h /usr/include/bits/confname.h
lispm.o: /usr/include/getopt.h band.h memmap.h word.h types.h config.h
lispm.o: lispm.h macroop.h
macroop.o: /usr/include/g++-2/iostream.h /usr/include/g++-2/streambuf.h
macroop.o: /usr/include/libio.h /usr/include/_G_config.h
macroop.o: /usr/include/bits/types.h /usr/include/features.h
macroop.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h
macroop.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stddef.h
macroop.o: /usr/include/bits/pthreadtypes.h /usr/include/bits/sched.h
macroop.o: /usr/include/wchar.h /usr/include/bits/wchar.h
macroop.o: /usr/include/gconv.h
macroop.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stdarg.h
macroop.o: /usr/include/g++-2/fstream.h /usr/include/unistd.h
macroop.o: /usr/include/bits/posix_opt.h /usr/include/bits/confname.h
macroop.o: /usr/include/getopt.h /usr/include/stdlib.h
macroop.o: /usr/include/sys/types.h /usr/include/time.h /usr/include/endian.h
macroop.o: /usr/include/bits/endian.h /usr/include/sys/select.h
macroop.o: /usr/include/bits/select.h /usr/include/bits/sigset.h
macroop.o: /usr/include/sys/sysmacros.h /usr/include/alloca.h
macroop.o: /usr/include/stdio.h /usr/include/bits/stdio_lim.h memobj.h
macroop.o: memmap.h word.h types.h config.h macroop.h
memmap.o: /usr/include/g++-2/iostream.h /usr/include/g++-2/streambuf.h
memmap.o: /usr/include/libio.h /usr/include/_G_config.h
memmap.o: /usr/include/bits/types.h /usr/include/features.h
memmap.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h
memmap.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stddef.h
memmap.o: /usr/include/bits/pthreadtypes.h /usr/include/bits/sched.h
memmap.o: /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h
memmap.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stdarg.h
memmap.o: physmemregion.h memmap.h word.h /usr/include/g++-2/fstream.h
memmap.o: types.h config.h
memobj.o: /usr/include/g++-2/iostream.h /usr/include/g++-2/streambuf.h
memobj.o: /usr/include/libio.h /usr/include/_G_config.h
memobj.o: /usr/include/bits/types.h /usr/include/features.h
memobj.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h
memobj.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stddef.h
memobj.o: /usr/include/bits/pthreadtypes.h /usr/include/bits/sched.h
memobj.o: /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h
memobj.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stdarg.h
memobj.o: /usr/include/stdio.h /usr/include/bits/stdio_lim.h
types.o: /usr/include/g++-2/iostream.h /usr/include/g++-2/streambuf.h
types.o: /usr/include/libio.h /usr/include/_G_config.h
types.o: /usr/include/bits/types.h /usr/include/features.h
types.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h
types.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stddef.h
types.o: /usr/include/bits/pthreadtypes.h /usr/include/bits/sched.h
types.o: /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h
types.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stdarg.h types.h
types.o: config.h
word.o: /usr/include/g++-2/iomanip.h /usr/include/g++-2/iostream.h
word.o: /usr/include/g++-2/streambuf.h /usr/include/libio.h
word.o: /usr/include/_G_config.h /usr/include/bits/types.h
word.o: /usr/include/features.h /usr/include/sys/cdefs.h
word.o: /usr/include/gnu/stubs.h
word.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stddef.h
word.o: /usr/include/bits/pthreadtypes.h /usr/include/bits/sched.h
word.o: /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h
word.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stdarg.h
word.o: /usr/include/unistd.h /usr/include/bits/posix_opt.h
word.o: /usr/include/bits/confname.h /usr/include/getopt.h
word.o: /usr/include/stdlib.h /usr/include/sys/types.h /usr/include/time.h
word.o: /usr/include/endian.h /usr/include/bits/endian.h
word.o: /usr/include/sys/select.h /usr/include/bits/select.h
word.o: /usr/include/bits/sigset.h /usr/include/sys/sysmacros.h
word.o: /usr/include/alloca.h word.h /usr/include/g++-2/fstream.h types.h
word.o: config.h
@


1.2
log
@
Added depend.mk to hold dependencies.
Checked in empty and should remain so to avoid problems.
@
text
@d62 122
@


1.1
log
@Initial revision
@
text
@d61 1
a61 122
# DO NOT DELETE

.o: /usr/include/stdlib.h /usr/include/features.h /usr/include/sys/cdefs.h
.o: /usr/include/gnu/stubs.h
.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stddef.h
.o: /usr/include/sys/types.h /usr/include/bits/types.h
.o: /usr/include/bits/pthreadtypes.h /usr/include/bits/sched.h
.o: /usr/include/time.h /usr/include/endian.h /usr/include/bits/endian.h
.o: /usr/include/sys/select.h /usr/include/bits/select.h
.o: /usr/include/bits/sigset.h /usr/include/sys/sysmacros.h
.o: /usr/include/alloca.h app.h lispm.h macroop.h memmap.h
.o: /usr/include/g++-2/iostream.h /usr/include/g++-2/streambuf.h
.o: /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h
.o: /usr/include/bits/wchar.h /usr/include/gconv.h
.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stdarg.h word.h
.o: /usr/include/g++-2/fstream.h types.h config.h
app.o: /usr/include/g++-2/iostream.h /usr/include/g++-2/streambuf.h
app.o: /usr/include/libio.h /usr/include/_G_config.h
app.o: /usr/include/bits/types.h /usr/include/features.h
app.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h
app.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stddef.h
app.o: /usr/include/bits/pthreadtypes.h /usr/include/bits/sched.h
app.o: /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h
app.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stdarg.h
app.o: /usr/include/unistd.h /usr/include/bits/posix_opt.h
app.o: /usr/include/bits/confname.h /usr/include/getopt.h
app.o: /usr/include/string.h /usr/include/stdlib.h /usr/include/sys/types.h
app.o: /usr/include/time.h /usr/include/endian.h /usr/include/bits/endian.h
app.o: /usr/include/sys/select.h /usr/include/bits/select.h
app.o: /usr/include/bits/sigset.h /usr/include/sys/sysmacros.h
app.o: /usr/include/alloca.h app.h
band.o: /usr/include/g++-2/iostream.h /usr/include/g++-2/streambuf.h
band.o: /usr/include/libio.h /usr/include/_G_config.h
band.o: /usr/include/bits/types.h /usr/include/features.h
band.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h
band.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stddef.h
band.o: /usr/include/bits/pthreadtypes.h /usr/include/bits/sched.h
band.o: /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h
band.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stdarg.h
band.o: /usr/include/unistd.h /usr/include/bits/posix_opt.h
band.o: /usr/include/bits/confname.h /usr/include/getopt.h
band.o: /usr/include/stdlib.h /usr/include/sys/types.h /usr/include/time.h
band.o: /usr/include/endian.h /usr/include/bits/endian.h
band.o: /usr/include/sys/select.h /usr/include/bits/select.h
band.o: /usr/include/bits/sigset.h /usr/include/sys/sysmacros.h
band.o: /usr/include/alloca.h band.h /usr/include/g++-2/fstream.h memmap.h
band.o: word.h types.h config.h
lispm.o: /usr/include/g++-2/iostream.h /usr/include/g++-2/streambuf.h
lispm.o: /usr/include/libio.h /usr/include/_G_config.h
lispm.o: /usr/include/bits/types.h /usr/include/features.h
lispm.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h
lispm.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stddef.h
lispm.o: /usr/include/bits/pthreadtypes.h /usr/include/bits/sched.h
lispm.o: /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h
lispm.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stdarg.h
lispm.o: /usr/include/g++-2/fstream.h /usr/include/unistd.h
lispm.o: /usr/include/bits/posix_opt.h /usr/include/bits/confname.h
lispm.o: /usr/include/getopt.h band.h memmap.h word.h types.h config.h
lispm.o: lispm.h macroop.h
macroop.o: /usr/include/g++-2/iostream.h /usr/include/g++-2/streambuf.h
macroop.o: /usr/include/libio.h /usr/include/_G_config.h
macroop.o: /usr/include/bits/types.h /usr/include/features.h
macroop.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h
macroop.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stddef.h
macroop.o: /usr/include/bits/pthreadtypes.h /usr/include/bits/sched.h
macroop.o: /usr/include/wchar.h /usr/include/bits/wchar.h
macroop.o: /usr/include/gconv.h
macroop.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stdarg.h
macroop.o: /usr/include/g++-2/fstream.h /usr/include/unistd.h
macroop.o: /usr/include/bits/posix_opt.h /usr/include/bits/confname.h
macroop.o: /usr/include/getopt.h /usr/include/stdlib.h
macroop.o: /usr/include/sys/types.h /usr/include/time.h /usr/include/endian.h
macroop.o: /usr/include/bits/endian.h /usr/include/sys/select.h
macroop.o: /usr/include/bits/select.h /usr/include/bits/sigset.h
macroop.o: /usr/include/sys/sysmacros.h /usr/include/alloca.h
macroop.o: /usr/include/stdio.h /usr/include/bits/stdio_lim.h memobj.h
macroop.o: memmap.h word.h types.h config.h macroop.h
memmap.o: /usr/include/g++-2/iostream.h /usr/include/g++-2/streambuf.h
memmap.o: /usr/include/libio.h /usr/include/_G_config.h
memmap.o: /usr/include/bits/types.h /usr/include/features.h
memmap.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h
memmap.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stddef.h
memmap.o: /usr/include/bits/pthreadtypes.h /usr/include/bits/sched.h
memmap.o: /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h
memmap.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stdarg.h
memmap.o: physmemregion.h memmap.h word.h /usr/include/g++-2/fstream.h
memmap.o: types.h config.h
memobj.o: /usr/include/g++-2/iostream.h /usr/include/g++-2/streambuf.h
memobj.o: /usr/include/libio.h /usr/include/_G_config.h
memobj.o: /usr/include/bits/types.h /usr/include/features.h
memobj.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h
memobj.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stddef.h
memobj.o: /usr/include/bits/pthreadtypes.h /usr/include/bits/sched.h
memobj.o: /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h
memobj.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stdarg.h
memobj.o: /usr/include/stdio.h /usr/include/bits/stdio_lim.h
types.o: /usr/include/g++-2/iostream.h /usr/include/g++-2/streambuf.h
types.o: /usr/include/libio.h /usr/include/_G_config.h
types.o: /usr/include/bits/types.h /usr/include/features.h
types.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h
types.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stddef.h
types.o: /usr/include/bits/pthreadtypes.h /usr/include/bits/sched.h
types.o: /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h
types.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stdarg.h types.h
types.o: config.h
word.o: /usr/include/g++-2/iomanip.h /usr/include/g++-2/iostream.h
word.o: /usr/include/g++-2/streambuf.h /usr/include/libio.h
word.o: /usr/include/_G_config.h /usr/include/bits/types.h
word.o: /usr/include/features.h /usr/include/sys/cdefs.h
word.o: /usr/include/gnu/stubs.h
word.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stddef.h
word.o: /usr/include/bits/pthreadtypes.h /usr/include/bits/sched.h
word.o: /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h
word.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stdarg.h
word.o: /usr/include/unistd.h /usr/include/bits/posix_opt.h
word.o: /usr/include/bits/confname.h /usr/include/getopt.h
word.o: /usr/include/stdlib.h /usr/include/sys/types.h /usr/include/time.h
word.o: /usr/include/endian.h /usr/include/bits/endian.h
word.o: /usr/include/sys/select.h /usr/include/bits/select.h
word.o: /usr/include/bits/sigset.h /usr/include/sys/sysmacros.h
word.o: /usr/include/alloca.h word.h /usr/include/g++-2/fstream.h types.h
word.o: config.h
@


1.1.1.1
log
@Initial revision.
@
text
@@
