fceux/branches/fceux-2.2.2/attic
punkrockguy318 a62fb8fb16 Creating release branch 2.2.2 2013-09-23 20:48:54 +00:00
..
cmake-stuff Creating release branch 2.2.2 2013-09-23 20:48:54 +00:00
.gitignore Creating release branch 2.2.2 2013-09-23 20:48:54 +00:00
BUGS Creating release branch 2.2.2 2013-09-23 20:48:54 +00:00
ChangeLog.older Creating release branch 2.2.2 2013-09-23 20:48:54 +00:00
Makefile.am Creating release branch 2.2.2 2013-09-23 20:48:54 +00:00
SConstruct.pre1.0 Creating release branch 2.2.2 2013-09-23 20:48:54 +00:00
TODO-SDL-2.1.6.md Creating release branch 2.2.2 2013-09-23 20:48:54 +00:00
acinclude.m4 Creating release branch 2.2.2 2013-09-23 20:48:54 +00:00
aclocal.m4 Creating release branch 2.2.2 2013-09-23 20:48:54 +00:00
authors Creating release branch 2.2.2 2013-09-23 20:48:54 +00:00
changelog Creating release branch 2.2.2 2013-09-23 20:48:54 +00:00
compile Creating release branch 2.2.2 2013-09-23 20:48:54 +00:00
config.guess Creating release branch 2.2.2 2013-09-23 20:48:54 +00:00
config.sub Creating release branch 2.2.2 2013-09-23 20:48:54 +00:00
configure-mingw32 Creating release branch 2.2.2 2013-09-23 20:48:54 +00:00
configure.ac Creating release branch 2.2.2 2013-09-23 20:48:54 +00:00
depcomp Creating release branch 2.2.2 2013-09-23 20:48:54 +00:00
fceu-svga.6 Creating release branch 2.2.2 2013-09-23 20:48:54 +00:00
install-sh Creating release branch 2.2.2 2013-09-23 20:48:54 +00:00
missing Creating release branch 2.2.2 2013-09-23 20:48:54 +00:00
mkinstalldirs Creating release branch 2.2.2 2013-09-23 20:48:54 +00:00
readme Creating release branch 2.2.2 2013-09-23 20:48:54 +00:00

readme

FCE Ultra was developed with gcc and GNU make in mind.  MSVC will probably
compile the Windows source code with a few modifications, but you'll still 
need to make a project file.

Several pre-made makefiles are provided:
	Makefile.beos		- BeOS(with SDL and SDL_net)
	Makefile.unixsdl	- UN*X(FreeBSD/Linux/etc, with SDL)
	Makefile.linuxvga	- Linux(with svgalib)
	Makefile.dos		- (MS/PC/DR) DOS
	Makefile.win		- MS Windows 9x/Me/Xp/2000/etc.(with DirectX).
	Makefile.macosx		- Mac OS X(with SDL)

If you want to use Makefile.beos or Makefile.unixsdl for a cpu type other
than 80x86, you will need to remove "-DC80x86" from the defines line
and also remove "-DLSB_FIRST" if your target cpu uses MSB first ordering.
You'll also need to remove/change "-mcpu=xxx".

For the Windows port, I use MINGW32.  http://www.mingw.org

To compile the DOS port, you'll need to download the DJGPP package.
Any version of gcc >=2.95.3 should compile the code without changes, BUT
the DJGPP versions of gcc have some problems:
  gcc 2.95.3 sometimes breaks when compiling the code.  gcc 3.0.2 seems to 
  produce bad code for sound.c.  So, I recommend using gcc 3.0.4 for
  compiling the DOS version.

Modifying the "-mcpu=i686" string in the makefiles, to optimize more effectively
for your cpu type, is a good idea.

Always do a "make -f Makefile.<platform> clean" before compiling for a 
different platform or if you update via cvs and if you have stale object 
files lying around.