head	1.5;
access;
symbols;
locks; strict;
comment	@# @;


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

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

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

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

1.1
date	2002.04.03.00.40.37;	author jm;	state Exp;
branches;
next	;


desc
@@


1.5
log
@

Yikes.  Lots of I/O and file-rearranging related changes.  Have moved
lots of stuff from common to arch/i386, and now the top-level e3 and
the arch/unix build targets rely on standard, vanilla, stuff.  The
arch/i386 contains my faked-up stuff.  Since I'm now using the serial
port as a console instead of the VGA text mode stuff, I nuked a whole
lot of code dealing with screen attributes, cursor positions, and
such.  Lots simpler now.
@
text
@COMMON_HEADERS = \
../../common/jbconsole.h \
../../common/jbdebug.h \
../../common/jbfifo.h \
../../common/jbhash.h \
../../common/jbheap.h \
../../common/jbmachin.h \
../../common/jbrefcnt.h \
../../common/jbzipfile.h \
../../common/jjtypes.h \
../../common/jbtimer.h

COMMON_SOURCES = \
../../common/jbconsol.cc \
../../common/jbfifo.cc \
../../common/jbheap.cc \
../../common/jbmachin.cc \
../../common/jbrefcnt.cc \
../../common/jbtypes.cc \
../../common/jbzipfile.cc \
../../common/jbtimer.cc

COMMON_OBJECTS = \
 jbconsol.o \
 jbfifo.o \
 jbheap.o \
 jbmachin.o \
 jbrefcnt.o \
 jbtypes.o \
 jbzipfile.o \
 jbtimer.o

%.o :../../common/%.cc
	$(CC) $(CFLAGS) -c $<
@


1.4
log
@
Don't need these either on most platforms.
@
text
@a1 1
../../common/builtins.h \
a10 1
../../common/stdlib.h \
a13 1
../../common/builtins.cc \
a20 1
../../common/stdlib.cc \
a23 1
 builtins.o \
a30 1
 stdlib.o \
@


1.3
log
@
Add forgotten file to Makefile.inc.  In order to make it easier to
fake up i/o stream stuff, change "hex" to "ios::hex" in several
files.  Moved global (another issue) "lispm" pointer to lispm from e3
to ease integrating upon bare iron.  For band loading, I separated out
the stream stuff from the band to ease integration on bare iron -- am
not finished yet however.
@
text
@a2 2
../../common/fstream.h \
../../common/iostream.h \
a16 2
../../common/fstream.cc \
../../common/iostream.cc \
a28 2
 fstream.o \
 iostream.o \
@


1.2
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
@d4 1
d20 1
d34 1
@


1.1
log
@
Added a whole bunch of stuff for porting to different platforms.
@
text
@d3 1
d18 1
d31 1
@

