2002-06-29 22:35:32 +04:00
# Copyright (C) 2002 MandrakeSoft S.A.
2001-04-10 05:04:59 +04:00
#
# MandrakeSoft S.A.
# 43, rue d'Aboukir
# 75002 Paris - France
# http://www.linux-mandrake.com/
# http://www.mandrakesoft.com/
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2001-05-24 09:36:07 +04:00
#
####################################################
# NOTE: To be compatibile with nmake (microsoft vc++) please follow
# the following rules:
# use $(VAR) not ${VAR}
2001-04-10 05:04:59 +04:00
2001-06-06 17:57:24 +04:00
prefix = @prefix@
exec_prefix = @exec_prefix@
bindir = @bindir@
mandir = @mandir@
man1dir = $( mandir) /man1
2002-06-29 22:35:32 +04:00
man5dir = $( mandir) /man5
2002-06-25 11:30:44 +04:00
docdir = $( prefix) /share/doc/bochs
sharedir = $( prefix) /share/bochs
2001-06-06 17:57:24 +04:00
2001-09-14 08:19:08 +04:00
DESTDIR =
2001-06-06 17:57:24 +04:00
2001-11-10 06:48:22 +03:00
VERSION = @VERSION@
VER_STRING = @VER_STRING@
REL_STRING = @REL_STRING@
2002-06-29 22:35:32 +04:00
MAN_PAGE_1_LIST = bochs bximage bochs-dlx
MAN_PAGE_5_LIST = bochsrc
2002-06-25 11:30:44 +04:00
INSTALL_LIST_SHARE = bios/BIOS-* bios/VGABIOS* @INSTALL_LIST_FOR_PLATFORM@
INSTALL_LIST_DOC = CHANGES COPYING README
INSTALL_LIST_BIN = bochs bochsdbg bximage $( srcdir) /build/linux/bochs-docs
INSTALL_LIST = $( INSTALL_LIST_SHARE) $( INSTALL_LIST_DOC) $( INSTALL_LIST_BIN)
2001-10-05 10:03:41 +04:00
INSTALL_LIST_X11 = install-x11-fonts test-x11-fonts
2001-06-04 08:26:56 +04:00
INSTALL_LIST_SED = DOC-linux.html
2001-05-22 20:12:01 +04:00
CP = cp
CAT = cat
RM = rm
2001-05-22 21:20:45 +04:00
MV = mv
2001-05-22 20:12:01 +04:00
LN_S = ln -sf
2002-03-11 19:59:58 +03:00
DLXLINUX_TAR = dlxlinux3.tar.gz
2001-05-24 09:36:07 +04:00
DLXLINUX_TAR_URL = http://bochs.sourceforge.net/guestos/$( DLXLINUX_TAR)
2001-05-31 19:30:30 +04:00
DLXLINUX_ROMFILE = BIOS-bochs-latest
2001-05-22 20:12:01 +04:00
GUNZIP = gunzip
WGET = wget
2001-05-22 21:20:45 +04:00
SED = sed
MKDIR = mkdir
2001-06-04 08:26:56 +04:00
RMDIR = rmdir
2001-05-22 21:20:45 +04:00
TAR = tar
2001-05-23 12:16:07 +04:00
CHMOD = chmod
2002-06-25 11:30:44 +04:00
GZIP = gzip -9
2001-09-24 08:16:53 +04:00
GUNZIP = gunzip
2001-09-24 08:21:29 +04:00
ZIP = zip
2001-10-05 10:03:41 +04:00
UNIX2DOS = unix2dos
2001-04-10 05:04:59 +04:00
@ S U F F I X _ L I N E @
2001-09-14 08:19:08 +04:00
srcdir = @srcdir@
VPATH = @srcdir@
2001-04-10 05:04:59 +04:00
SHELL = /bin/sh
@ S E T _ M A K E @
CC = @CC@
CXX = @CXX@
CFLAGS = @CFLAGS@ $( MCH_CFLAGS) $( FLA_FLAGS)
CXXFLAGS = @CXXFLAGS@ $( MCH_CFLAGS) $( FLA_FLAGS)
LDFLAGS = @LDFLAGS@
LIBS = @LIBS@
2001-05-23 12:16:07 +04:00
# To compile with readline:
# linux needs just -lreadline
# solaris needs -lreadline -lcurses
2001-04-10 05:04:59 +04:00
X_LIBS = @X_LIBS@
X_PRE_LIBS = @X_PRE_LIBS@
GUI_LINK_OPTS_X = $( X_LIBS) $( X_PRE_LIBS) -lX11
2002-02-05 20:37:11 +03:00
GUI_LINK_OPTS_SDL = ` sdl-config --cflags --libs`
2001-04-10 05:04:59 +04:00
GUI_LINK_OPTS_BEOS = -lbe
2001-06-02 07:07:28 +04:00
GUI_LINK_OPTS_RFB = @RFB_LIBS@
2001-08-16 00:33:47 +04:00
GUI_LINK_OPTS_AMIGAOS =
2001-04-10 05:04:59 +04:00
GUI_LINK_OPTS_WIN32 = -luser32 -lgdi32 -lwinmm -lcomdlg32 -lcomctl32
GUI_LINK_OPTS_WIN32_VCPP = user32.lib gdi32.lib winmm.lib \
comdlg32.lib comctl32.lib wsock32.lib
GUI_LINK_OPTS_MACOS =
2001-09-27 06:00:37 +04:00
GUI_LINK_OPTS_CARBON = -framework Carbon
2001-04-10 05:04:59 +04:00
GUI_LINK_OPTS_NOGUI =
2001-05-08 23:07:26 +04:00
GUI_LINK_OPTS_TERM = @GUI_LINK_OPTS_TERM@
2002-04-18 04:22:20 +04:00
GUI_LINK_OPTS_WX = ` wx-config --libs`
2001-04-10 05:04:59 +04:00
GUI_LINK_OPTS = @GUI_LINK_OPTS@
RANLIB = @RANLIB@
2001-09-14 08:19:08 +04:00
BX_INCDIRS = -I. -I$( srcdir) /. -I@INSTRUMENT_DIR@ -I$( srcdir) /@INSTRUMENT_DIR@
2001-04-10 05:04:59 +04:00
MDEFINES = CC = " $( CC) " CXX = " $( CXX) " CFLAGS = " $( CFLAGS) " CXXFLAGS = " $( CXXFLAGS) " \
LDFLAGS = " $( LDFLAGS) " LIBS = " $( LIBS) " \
X_LIBS = " $( X_LIBS) " X_PRE_LIBS = " $( X_PRE_LIBS) " \
prefix = " $( prefix) " exec_prefix = " $( exec_prefix) " \
bindir = " $( bindir) " infodir = " $( infodir) "
#SUBDIRS = iodev debug
#all install uninstall: config.h#
# for subdir in $(SUBDIRS); do #
# echo making $@ in $$subdir; #
# (cd $$subdir && $(MAKE) $(MDEFINES) $@) || exit 1; #
# done#
# gnu flags for clean up
#CFLAGS = -ansi -O -g -Wunused -Wuninitialized
NONINLINE_OBJS = \
2001-06-19 20:31:28 +04:00
logio.o \
2001-04-10 05:04:59 +04:00
main.o \
load32bitOShack.o \
state_file.o \
2001-04-10 05:51:50 +04:00
pc_system.o \
2001-04-10 06:02:37 +04:00
osdep.o
2001-04-10 05:04:59 +04:00
EXTERN_ENVIRONMENT_OBJS = \
main.o \
load32bitOShack.o \
state_file.o \
pc_system.o
DEBUGGER_LIB = debug/libdebug.a
DISASM_LIB = disasm/libdisasm.a
DYNAMIC_LIB = dynamic/libdynamic.a
INSTRUMENT_LIB = @INSTRUMENT_DIR@/libinstrument.a
FPU_LIB = fpu/libfpu.a
2001-05-23 12:16:07 +04:00
READLINE_LIB = @READLINE_LIB@
2001-12-08 00:56:15 +03:00
EXTRA_LINK_OPTS = @EXTRA_LINK_OPTS@
2001-04-10 05:04:59 +04:00
BX_OBJS = @NONINLINE_VAR@
2001-04-10 05:51:50 +04:00
BX_INCLUDES = bochs.h config.h osdep.h
2001-04-10 05:04:59 +04:00
.@CPP_SUFFIX@.o :
$( CXX) @DASH@c $( CXXFLAGS) $( BX_INCDIRS) @CXXFP@$< @OFP@$@
2001-06-01 09:58:46 +04:00
.c.o :
$( CC) @DASH@c $( CFLAGS) $( FPU_FLAGS) $( BX_INCDIRS) $< @OFP@$@
2001-04-10 05:04:59 +04:00
2001-06-01 09:21:25 +04:00
all : @PRIMARY_TARGET @ bximage @EXE @
2001-04-10 05:04:59 +04:00
@ E X T E R N A L _ D E P E N D E N C Y @
bochs@EXE@ : @IODEV_LIB_VAR @ @DEBUGGER_VAR @ \
cpu/libcpu.a memory/libmemory.a gui/libgui.a \
@DISASM_VAR@ @INSTRUMENT_VAR@ @DYNAMIC_VAR@ $( BX_OBJS) \
$( SIMX86_OBJS) \
$( FPU_LIB)
@LINK@ $( BX_OBJS) \
$( SIMX86_OBJS) \
iodev/libiodev.a \
cpu/libcpu.a memory/libmemory.a gui/libgui.a \
@DEBUGGER_VAR@ @DISASM_VAR@ @INSTRUMENT_VAR@ @DYNAMIC_VAR@ \
$( FPU_LIB) \
$( GUI_LINK_OPTS) \
$( MCH_LINK_FLAGS) \
2001-05-23 12:16:07 +04:00
$( SIMX86_LINK_FLAGS) \
2001-12-08 00:56:15 +03:00
$( READLINE_LIB) \
$( EXTRA_LINK_OPTS)
2001-04-10 05:04:59 +04:00
2001-06-01 09:58:46 +04:00
bximage@EXE@ : misc /bximage .o
2001-10-09 17:41:01 +04:00
@LINK@ misc/bximage.o
2001-11-04 09:33:19 +03:00
niclist@EXE@ : misc /niclist .o
@LINK@ misc/niclist.o
2001-04-10 05:04:59 +04:00
$(BX_OBJS) : $( BX_INCLUDES )
2001-10-07 04:33:21 +04:00
bxversion.h :
2001-05-24 09:36:07 +04:00
$( RM) -f bxversion.h
2001-11-10 04:35:58 +03:00
echo '/////////////////////////////////////////////////////////////////////////' > bxversion.h
2002-08-28 07:02:56 +04:00
echo '// $$Id: Makefile.in,v 1.73 2002-08-28 03:02:56 bdenney Exp $$' >> bxversion.h
2001-11-10 04:35:58 +03:00
echo '/////////////////////////////////////////////////////////////////////////' >> bxversion.h
echo '// This file is generated by "make bxversion.h"' >> bxversion.h
2001-05-22 22:49:11 +04:00
echo " #define VER_STRING \" $( VER_STRING) \" " >> bxversion.h
echo " #define REL_STRING \" $( REL_STRING) \" " >> bxversion.h
2001-04-10 05:04:59 +04:00
2001-05-14 19:32:43 +04:00
iodev/libiodev.a ::
2001-04-10 05:04:59 +04:00
cd iodev @COMMAND_SEPARATOR@
$( MAKE) $( MDEFINES) libiodev.a
@CD_UP_ONE@
2001-05-14 19:32:43 +04:00
debug/libdebug.a ::
2001-04-10 05:04:59 +04:00
cd debug @COMMAND_SEPARATOR@
$( MAKE) $( MDEFINES) libdebug.a
@CD_UP_ONE@
2001-05-14 19:32:43 +04:00
cpu/libcpu.a ::
2001-04-10 05:04:59 +04:00
cd cpu @COMMAND_SEPARATOR@
$( MAKE) $( MDEFINES) libcpu.a
@CD_UP_ONE@
2001-05-14 19:32:43 +04:00
memory/libmemory.a ::
2001-04-10 05:04:59 +04:00
cd memory @COMMAND_SEPARATOR@
$( MAKE) $( MDEFINES) libmemory.a
@CD_UP_ONE@
2001-05-14 19:32:43 +04:00
gui/libgui.a ::
2001-04-10 05:04:59 +04:00
cd gui @COMMAND_SEPARATOR@
$( MAKE) $( MDEFINES) libgui.a
@CD_UP_ONE@
2001-05-14 19:32:43 +04:00
disasm/libdisasm.a ::
2001-04-10 05:04:59 +04:00
cd disasm @COMMAND_SEPARATOR@
$( MAKE) $( MDEFINES) libdisasm.a
@CD_UP_ONE@
2001-05-14 19:32:43 +04:00
dynamic/libdynamic.a ::
2001-04-10 05:04:59 +04:00
cd dynamic @COMMAND_SEPARATOR@
$( MAKE) $( MDEFINES) libdynamic.a
@CD_UP_ONE@
2001-05-14 19:32:43 +04:00
@INSTRUMENT_DIR@/libinstrument.a ::
2001-04-10 05:04:59 +04:00
cd @INSTRUMENT_DIR@ @COMMAND_SEPARATOR@
$( MAKE) $( MDEFINES) libinstrument.a
@CD_UP_TWO@
2001-05-14 19:32:43 +04:00
fpu/libfpu.a ::
2001-04-10 05:04:59 +04:00
cd fpu @COMMAND_SEPARATOR@
$( MAKE) $( MDEFINES) libfpu.a
@CD_UP_ONE@
libbochs.a :
-rm -f libbochs.a
ar rv libbochs.a $( EXTERN_ENVIRONMENT_OBJS)
$( RANLIB) libbochs.a
libbochs_cpu.a : @DEBUGGER_VAR @ $( BX_OBJS )
-rm -f libbochs_cpu.a
ar rv libbochs_cpu.a $( BX_OBJS)
$( RANLIB) libbochs_cpu.a
2001-10-05 10:03:41 +04:00
#####################################################################
# Install target for all platforms.
#####################################################################
install : all @INSTALL_TARGET @
#####################################################################
# Install target for win32
#
# This is intended to be run in cygwin, since it has better scripting
# tools.
#####################################################################
2001-11-18 05:32:59 +03:00
install_win32 : download_dlx
2001-10-05 10:03:41 +04:00
-mkdir -p $( prefix)
2002-03-28 03:28:41 +03:00
cp obj-debug/*.exe .
2001-12-11 00:31:20 +03:00
for i in $( INSTALL_LIST) niclist; do if test -f $$ i; then cp $$ i $( prefix) ; else cp $( srcdir) /$$ i $( prefix) ; fi ; done
2001-10-05 10:39:09 +04:00
cp $( srcdir) /misc/sb16/sb16ctrl.example $( prefix) /sb16ctrl.txt
cp $( srcdir) /misc/sb16/sb16ctrl.exe $( prefix)
2001-10-05 10:03:41 +04:00
cat $( srcdir) /build/win32/DOC-win32.htm | $( SED) -e 's/@VERSION@/$(VERSION)/g' > $( prefix) /DOC-win32.htm
2001-10-05 10:39:09 +04:00
cp $( srcdir) /.bochsrc $( prefix) /bochsrc-sample.txt
cp -r $( srcdir) /docs-html $( prefix)
2002-06-19 19:15:59 +04:00
-mkdir $( prefix) /keymaps
2002-03-11 19:59:58 +03:00
cp $( srcdir) /gui/keymaps/*.map $( prefix) /keymaps
2001-10-05 10:03:41 +04:00
cat $( DLXLINUX_TAR) | ( cd $( prefix) && tar xzvf -)
echo '..\bochs' > $( prefix) /dlxlinux/start.bat
dlxrc = $( prefix) /dlxlinux/bochsrc.txt; mv $$ dlxrc $$ dlxrc.orig && sed < $$ dlxrc.orig 's/\/usr\/local\/bochs\/latest/../' > $$ dlxrc && rm -f $$ dlxrc.orig
mv $( prefix) /README $( prefix) /README.orig
2001-10-05 10:39:09 +04:00
cat $( srcdir) /build/win32/README.win32-binary $( prefix) /README.orig > $( prefix) /README
2001-10-05 10:03:41 +04:00
rm -f $( prefix) /README.orig
for i in README CHANGES COPYING VGABIOS-elpin-LICENSE dlxlinux/README; do mv $( prefix) /$$ i $( prefix) /$$ i.txt; done
2001-11-18 05:32:59 +03:00
cd $( prefix) ; $( UNIX2DOS) *.txt */*.txt
2001-10-05 10:39:09 +04:00
cd $( prefix) ; NAME = ` pwd| $( SED) 's/.*\///' ` ; ( cd ..; $( ZIP) $$ NAME.zip -r $$ NAME) ; ls -l ../$$ NAME.zip
2001-10-05 10:03:41 +04:00
#####################################################################
# install target for unix
#####################################################################
2002-06-25 11:30:44 +04:00
install_unix : install_bin install_man install_share install_doc
2001-05-22 20:12:01 +04:00
install_bin ::
2002-06-25 11:30:44 +04:00
for i in $( DESTDIR) $( bindir) ; do mkdir -p $$ i && test -d $$ i && test -w $$ i; done
2001-11-10 06:48:22 +03:00
$( CHMOD) a+x install-x11-fonts test-x11-fonts
2002-06-25 11:30:44 +04:00
for i in $( INSTALL_LIST_BIN) ; do if test -f $$ i; then cp $$ i $( DESTDIR) $( bindir) ; else cp $( srcdir) /$$ i $( DESTDIR) $( bindir) ; fi ; done
install_share ::
for i in $( DESTDIR) $( sharedir) ; do mkdir -p $$ i && test -d $$ i && test -w $$ i; done
for i in $( INSTALL_LIST_SHARE) ; do if test -f $$ i; then cp $$ i $( DESTDIR) $( sharedir) ; else cp $( srcdir) /$$ i $( DESTDIR) $( sharedir) ; fi ; done
$( CP) -r $( srcdir) /gui/keymaps $( DESTDIR) $( sharedir)
$( CP) $( srcdir) /font/vga.pcf $( DESTDIR) $( sharedir) /vga.pcf
install_doc ::
for i in $( DESTDIR) $( docdir) ; do mkdir -p $$ i && test -d $$ i && test -w $$ i; done
for i in $( INSTALL_LIST_SED) ; do install -m644 $( srcdir) /build/linux/$$ i $( DESTDIR) $( docdir) /$$ i; done
for i in $( INSTALL_LIST_DOC) ; do if test -f $$ i; then cp $$ i $( DESTDIR) $( docdir) ; else cp $( srcdir) /$$ i $( DESTDIR) $( docdir) ; fi ; done
$( CP) -r $( srcdir) /docs-html $( DESTDIR) $( docdir)
$( RM) -f $( DESTDIR) $( docdir) /README
$( CAT) $( srcdir) /build/linux/README.linux-binary $( srcdir) /README > $( DESTDIR) $( docdir) /README
$( CP) $( srcdir) /.bochsrc $( DESTDIR) $( docdir) /bochsrc-sample.txt
2001-05-22 20:12:01 +04:00
2001-06-04 08:26:56 +04:00
install_man ::
2001-09-14 08:19:08 +04:00
-mkdir -p $( DESTDIR) $( man1dir)
2002-06-29 22:35:32 +04:00
-mkdir -p $( DESTDIR) $( man5dir)
for i in $( MAN_PAGE_1_LIST) ; do cat $( srcdir) /doc/man/$$ i.1 | $( SED) 's/@version@/$(VERSION)/g' | $( GZIP) -c > $( DESTDIR) $( man1dir) /$$ i.1.gz; chmod 644 $( DESTDIR) $( man1dir) /$$ i.1.gz; done
for i in $( MAN_PAGE_5_LIST) ; do cat $( srcdir) /doc/man/$$ i.5 | $( GZIP) -c > $( DESTDIR) $( man5dir) /$$ i.5.gz; chmod 644 $( DESTDIR) $( man5dir) /$$ i.5.gz; done
2001-06-04 08:26:56 +04:00
2001-10-03 16:55:00 +04:00
download_dlx : $( DLXLINUX_TAR )
$(DLXLINUX_TAR) :
2001-05-24 09:36:07 +04:00
$( RM) -f $( DLXLINUX_TAR)
$( WGET) $( DLXLINUX_TAR_URL)
2001-10-03 16:55:00 +04:00
test -f $( DLXLINUX_TAR)
2001-12-08 08:35:57 +03:00
unpack_dlx : $( DLXLINUX_TAR )
rm -rf dlxlinux
$( GUNZIP) -c $( DLXLINUX_TAR) | $( TAR) -xvf -
test -d dlxlinux
( cd dlxlinux; $( MV) bochsrc.txt bochsrc.txt.orig; $( SED) -e " s/1\.1\.2/ $( VERSION) /g " -e 's,/usr/local,$(prefix),g' < bochsrc.txt.orig > bochsrc.txt; rm -f bochsrc.txt.orig)
install_dlx :
2002-06-25 11:30:44 +04:00
$( RM) -rf $( DESTDIR) $( sharedir) /dlxlinux
cp -r dlxlinux $( DESTDIR) $( sharedir) /dlxlinux
$( CHMOD) 755 $( DESTDIR) $( sharedir) /dlxlinux
$( GZIP) $( DESTDIR) $( sharedir) /dlxlinux/hd10meg.img
$( CHMOD) 644 $( DESTDIR) $( sharedir) /dlxlinux/*
for i in bochs-dlx; do cp $( srcdir) /build/linux/$$ i $( bindir) /$$ i; $( CHMOD) 755 $( DESTDIR) $( bindir) /$$ i; done
2001-06-06 17:57:24 +04:00
uninstall ::
2002-06-25 11:30:44 +04:00
$( RM) -rf $( DESTDIR) $( sharedir)
$( RM) -rf $( DESTDIR) $( docdir)
2002-07-04 23:01:14 +04:00
for i in bochs bximage bochs-dlx bochs-docs; do rm -f $( DESTDIR) $( bindir) /$$ i; done
2002-06-29 22:35:32 +04:00
for i in $( MAN_PAGE_1_LIST) ; do $( RM) -f $( man1dir) /$$ i.1.gz; done
for i in $( MAN_PAGE_5_LIST) ; do $( RM) -f $( man5dir) /$$ i.5.gz; done
2001-05-22 20:12:01 +04:00
2001-09-24 08:16:53 +04:00
V6WORKSPACE_ZIP = build/win32/workspace.zip
2001-10-08 03:36:11 +04:00
V6WORKSPACE_FILES = bochs.dsw bochs.dsp bochs.opt cpu/cpu.dsp \
memory/memory.dsp iodev/iodev.dsp instrument/stubs/stubs.dsp \
2001-10-09 08:39:52 +04:00
gui/gui.dsp fpu/fpu.dsp disasm/disasm.dsp debug/debug.dsp \
misc/niclist.dsp bximage.dsp
2001-09-24 08:16:53 +04:00
v6workspace :
zip $( V6WORKSPACE_ZIP) $( V6WORKSPACE_FILES)
2001-10-05 17:40:34 +04:00
########
# the win32_snap target is used to create a ZIP of bochs sources configured
# for VC++. This ZIP is stuck on the website every once in a while to make
# it easier for VC++ users to compile bochs. First, you should
# run "sh .conf.win32-vcpp" to configure the source code, then do
# "make win32_snap" to unzip the workspace files and create the ZIP.
########
2001-09-24 08:16:53 +04:00
win32_snap :
unzip $( V6WORKSPACE_ZIP)
2001-09-24 08:21:29 +04:00
make zip
2001-09-24 08:16:53 +04:00
tar :
NAME = ` pwd| $( SED) 's/.*\///' ` ; ( cd ..; tar cf - $$ NAME | $( GZIP) > $$ NAME.tar.gz) ; ls -l ../$$ NAME.tar.gz
2001-09-24 08:21:29 +04:00
zip :
NAME = ` pwd| $( SED) 's/.*\///' ` ; ( cd ..; $( ZIP) $$ NAME.zip -r $$ NAME) ; ls -l ../$$ NAME.zip
2001-04-10 05:04:59 +04:00
clean :
@RMCOMMAND@ *.o
merge in BRANCH-io-cleanup.
To see the commit logs for this use either cvsweb or
cvs update -r BRANCH-io-cleanup and then 'cvs log' the various files.
In general this provides a generic interface for logging.
logfunctions:: is a class that is inherited by some classes, and also
. allocated as a standalone global called 'genlog'. All logging uses
. one of the ::info(), ::error(), ::ldebug(), ::panic() methods of this
. class through 'BX_INFO(), BX_ERROR(), BX_DEBUG(), BX_PANIC()' macros
. respectively.
.
. An example usage:
. BX_INFO(("Hello, World!\n"));
iofunctions:: is a class that is allocated once by default, and assigned
as the iofunction of each logfunctions instance. It is this class that
maintains the file descriptor and other output related code, at this
point using vfprintf(). At some future point, someone may choose to
write a gui 'console' for bochs to which messages would be redirected
simply by assigning a different iofunction class to the various logfunctions
objects.
More cleanup is coming, but this works for now. If you want to see alot
of debugging output, in main.cc, change onoff[LOGLEV_DEBUG]=0 to =1.
Comments, bugs, flames, to me: todd@fries.net
2001-05-15 18:49:57 +04:00
@RMCOMMAND@ */*.o
2001-04-10 05:04:59 +04:00
@RMCOMMAND@ *.a
merge in BRANCH-io-cleanup.
To see the commit logs for this use either cvsweb or
cvs update -r BRANCH-io-cleanup and then 'cvs log' the various files.
In general this provides a generic interface for logging.
logfunctions:: is a class that is inherited by some classes, and also
. allocated as a standalone global called 'genlog'. All logging uses
. one of the ::info(), ::error(), ::ldebug(), ::panic() methods of this
. class through 'BX_INFO(), BX_ERROR(), BX_DEBUG(), BX_PANIC()' macros
. respectively.
.
. An example usage:
. BX_INFO(("Hello, World!\n"));
iofunctions:: is a class that is allocated once by default, and assigned
as the iofunction of each logfunctions instance. It is this class that
maintains the file descriptor and other output related code, at this
point using vfprintf(). At some future point, someone may choose to
write a gui 'console' for bochs to which messages would be redirected
simply by assigning a different iofunction class to the various logfunctions
objects.
More cleanup is coming, but this works for now. If you want to see alot
of debugging output, in main.cc, change onoff[LOGLEV_DEBUG]=0 to =1.
Comments, bugs, flames, to me: todd@fries.net
2001-05-15 18:49:57 +04:00
@RMCOMMAND@ */*.a
2001-04-10 05:04:59 +04:00
@RMCOMMAND@ bochs@EXE@
2001-06-02 11:37:38 +04:00
@RMCOMMAND@ bximage@EXE@
2001-04-10 05:04:59 +04:00
@RMCOMMAND@ bochs.out
2001-06-02 11:37:38 +04:00
@RMCOMMAND@ bochsout.txt
2001-04-10 05:04:59 +04:00
local-dist-clean : clean
@RMCOMMAND@ config.h config.status config.log config.cache
2001-09-27 03:32:23 +04:00
@RMCOMMAND@ .dummy ` find . -name '*.dsp' -o -name '*.dsw' -o -name '*.opt' `
2001-11-10 06:48:22 +03:00
@RMCOMMAND@ bxversion.h install-x11-fonts build/linux/bochs-dlx build/linux/bochs-docs build/linux/DOC-linux.html
2001-04-10 05:04:59 +04:00
all-clean : clean
cd iodev @COMMAND_SEPARATOR@
$( MAKE) clean
@CD_UP_ONE@
cd debug @COMMAND_SEPARATOR@
$( MAKE) clean
@CD_UP_ONE@
cd cpu @COMMAND_SEPARATOR@
$( MAKE) clean
@CD_UP_ONE@
cd memory @COMMAND_SEPARATOR@
$( MAKE) clean
@CD_UP_ONE@
cd gui @COMMAND_SEPARATOR@
$( MAKE) clean
@CD_UP_ONE@
cd disasm @COMMAND_SEPARATOR@
$( MAKE) clean
@CD_UP_ONE@
cd @INSTRUMENT_DIR@ @COMMAND_SEPARATOR@
$( MAKE) clean
@CD_UP_TWO@
cd misc @COMMAND_SEPARATOR@
$( MAKE) clean
@CD_UP_ONE@
cd dynamic @COMMAND_SEPARATOR@
$( MAKE) clean
@CD_UP_ONE@
cd fpu @COMMAND_SEPARATOR@
$( MAKE) clean
@CD_UP_ONE@
dist-clean : local -dist -clean
cd iodev @COMMAND_SEPARATOR@
$( MAKE) dist-clean
@CD_UP_ONE@
cd debug @COMMAND_SEPARATOR@
$( MAKE) dist-clean
@CD_UP_ONE@
cd bios @COMMAND_SEPARATOR@
$( MAKE) dist-clean
@CD_UP_ONE@
cd cpu @COMMAND_SEPARATOR@
$( MAKE) dist-clean
@CD_UP_ONE@
cd memory @COMMAND_SEPARATOR@
$( MAKE) dist-clean
@CD_UP_ONE@
cd gui @COMMAND_SEPARATOR@
$( MAKE) dist-clean
@CD_UP_ONE@
cd disasm @COMMAND_SEPARATOR@
$( MAKE) dist-clean
@CD_UP_ONE@
cd @INSTRUMENT_DIR@ @COMMAND_SEPARATOR@
$( MAKE) dist-clean
@CD_UP_TWO@
cd misc @COMMAND_SEPARATOR@
$( MAKE) dist-clean
@CD_UP_ONE@
cd dynamic @COMMAND_SEPARATOR@
$( MAKE) dist-clean
@CD_UP_ONE@
cd fpu @COMMAND_SEPARATOR@
$( MAKE) dist-clean
@CD_UP_ONE@
@RMCOMMAND@ Makefile
2001-09-27 06:00:37 +04:00
###########################################
# Build app on MacOS X
###########################################
APP = bochs.app
MACOSX_STUFF = build/macosx
REZ = /Developer/Tools/Rez
RINCLUDES = /System/Library/Frameworks/Carbon.framework/Libraries/RIncludes
REZ_ARGS = -append -i $RINCLUDES -d SystemSevenOrLater = 1 -useDF
$(APP)/.build : bochs
rm -f $( APP) /.build
$( MKDIR) -p $( APP)
$( MKDIR) -p $( APP) /Contents
$( CP) -f $( MACOSX_STUFF) /Info.plist $( APP) /Contents
$( CP) -f $( MACOSX_STUFF) /pbdevelopment.plist $( APP) /Contents
echo -n "APPL????" > $( APP) /Contents/PkgInfo
$( MKDIR) -p $( APP) /Contents/MacOS
$( CP) bochs $( APP) /Contents/MacOS
$( MKDIR) -p $( APP) /Contents/Resources
$( REZ) $( REZ_ARGS) $( MACOSX_STUFF) /bochs.r -o $( APP) /Contents/Resources/bochs.rsrc
ls -ld $( APP)
touch $( APP) /.build
2001-10-07 04:33:21 +04:00
###########################################
# dependencies generated by
2001-10-08 00:19:04 +04:00
# gcc -MM -I. -Iinstrument/stubs *.cc | sed 's/\.cc/.@CPP_SUFFIX@/g'
2001-10-07 04:33:21 +04:00
###########################################
2001-10-08 00:19:04 +04:00
load32bitOShack.o : load 32bitOShack .@CPP_SUFFIX @ bochs .h config .h osdep .h \
2001-10-07 04:33:21 +04:00
debug/debug.h bxversion.h gui/siminterface.h state_file.h cpu/cpu.h \
2001-10-08 00:19:04 +04:00
cpu/lazy_flags.h memory/memory.h pc_system.h gui/gui.h gui/control.h \
2002-08-28 07:02:56 +04:00
gui/keymap.h iodev/iodev.h iodev/pci.h iodev/vga.h iodev/biosdev.h \
iodev/cmos.h iodev/dma.h iodev/floppy.h iodev/harddrv.h iodev/cdrom.h \
iodev/keyboard.h iodev/parallel.h iodev/pic.h iodev/pit.h \
iodev/pit_wrap.h iodev/pit82c54.h iodev/serial.h iodev/sb16.h \
iodev/soundlnx.h iodev/soundwin.h iodev/unmapped.h iodev/eth.h \
iodev/ne2k.h iodev/guest2host.h iodev/slowdown_timer.h \
2001-10-07 04:33:21 +04:00
instrument/stubs/instrument.h
2001-10-08 00:19:04 +04:00
logio.o : logio .@CPP_SUFFIX @ bochs .h config .h osdep .h debug /debug .h bxversion .h \
2001-10-07 04:33:21 +04:00
gui/siminterface.h state_file.h cpu/cpu.h cpu/lazy_flags.h \
2002-08-28 07:02:56 +04:00
memory/memory.h pc_system.h gui/gui.h gui/control.h gui/keymap.h \
iodev/iodev.h iodev/pci.h iodev/vga.h iodev/biosdev.h iodev/cmos.h \
iodev/dma.h iodev/floppy.h iodev/harddrv.h iodev/cdrom.h \
iodev/keyboard.h iodev/parallel.h iodev/pic.h iodev/pit.h \
iodev/pit_wrap.h iodev/pit82c54.h iodev/serial.h iodev/sb16.h \
iodev/soundlnx.h iodev/soundwin.h iodev/unmapped.h iodev/eth.h \
iodev/ne2k.h iodev/guest2host.h iodev/slowdown_timer.h \
instrument/stubs/instrument.h
2001-10-08 00:19:04 +04:00
main.o : main .@CPP_SUFFIX @ bochs .h config .h osdep .h debug /debug .h bxversion .h \
gui/siminterface.h state_file.h cpu/cpu.h cpu/lazy_flags.h \
2002-08-28 07:02:56 +04:00
memory/memory.h pc_system.h gui/gui.h gui/control.h gui/keymap.h \
iodev/iodev.h iodev/pci.h iodev/vga.h iodev/biosdev.h iodev/cmos.h \
iodev/dma.h iodev/floppy.h iodev/harddrv.h iodev/cdrom.h \
iodev/keyboard.h iodev/parallel.h iodev/pic.h iodev/pit.h \
iodev/pit_wrap.h iodev/pit82c54.h iodev/serial.h iodev/sb16.h \
iodev/soundlnx.h iodev/soundwin.h iodev/unmapped.h iodev/eth.h \
iodev/ne2k.h iodev/guest2host.h iodev/slowdown_timer.h \
instrument/stubs/instrument.h
2001-10-08 00:19:04 +04:00
osdep.o : osdep .@CPP_SUFFIX @ bochs .h config .h osdep .h debug /debug .h bxversion .h \
2001-10-07 04:33:21 +04:00
gui/siminterface.h state_file.h cpu/cpu.h cpu/lazy_flags.h \
2002-08-28 07:02:56 +04:00
memory/memory.h pc_system.h gui/gui.h gui/control.h gui/keymap.h \
iodev/iodev.h iodev/pci.h iodev/vga.h iodev/biosdev.h iodev/cmos.h \
iodev/dma.h iodev/floppy.h iodev/harddrv.h iodev/cdrom.h \
iodev/keyboard.h iodev/parallel.h iodev/pic.h iodev/pit.h \
iodev/pit_wrap.h iodev/pit82c54.h iodev/serial.h iodev/sb16.h \
iodev/soundlnx.h iodev/soundwin.h iodev/unmapped.h iodev/eth.h \
iodev/ne2k.h iodev/guest2host.h iodev/slowdown_timer.h \
instrument/stubs/instrument.h
2001-10-08 00:19:04 +04:00
pc_system.o : pc_system .@CPP_SUFFIX @ bochs .h config .h osdep .h debug /debug .h \
bxversion.h gui/siminterface.h state_file.h cpu/cpu.h \
cpu/lazy_flags.h memory/memory.h pc_system.h gui/gui.h gui/control.h \
2002-08-28 07:02:56 +04:00
gui/keymap.h iodev/iodev.h iodev/pci.h iodev/vga.h iodev/biosdev.h \
iodev/cmos.h iodev/dma.h iodev/floppy.h iodev/harddrv.h iodev/cdrom.h \
iodev/keyboard.h iodev/parallel.h iodev/pic.h iodev/pit.h \
iodev/pit_wrap.h iodev/pit82c54.h iodev/serial.h iodev/sb16.h \
iodev/soundlnx.h iodev/soundwin.h iodev/unmapped.h iodev/eth.h \
iodev/ne2k.h iodev/guest2host.h iodev/slowdown_timer.h \
2001-10-07 04:33:21 +04:00
instrument/stubs/instrument.h
2001-10-08 00:19:04 +04:00
state_file.o : state_file .@CPP_SUFFIX @ bochs .h config .h osdep .h debug /debug .h \
2001-10-07 04:33:21 +04:00
bxversion.h gui/siminterface.h state_file.h cpu/cpu.h \
2001-10-08 00:19:04 +04:00
cpu/lazy_flags.h memory/memory.h pc_system.h gui/gui.h gui/control.h \
2002-08-28 07:02:56 +04:00
gui/keymap.h iodev/iodev.h iodev/pci.h iodev/vga.h iodev/biosdev.h \
iodev/cmos.h iodev/dma.h iodev/floppy.h iodev/harddrv.h iodev/cdrom.h \
iodev/keyboard.h iodev/parallel.h iodev/pic.h iodev/pit.h \
iodev/pit_wrap.h iodev/pit82c54.h iodev/serial.h iodev/sb16.h \
iodev/soundlnx.h iodev/soundwin.h iodev/unmapped.h iodev/eth.h \
iodev/ne2k.h iodev/guest2host.h iodev/slowdown_timer.h \
2001-10-07 04:33:21 +04:00
instrument/stubs/instrument.h