Added message to recomp makefile, also updated readme slightly.

This commit is contained in:
David Benepe
2021-06-30 14:28:54 -05:00
parent 89234fc5e6
commit c86d9c354a
4 changed files with 10 additions and 2 deletions
+2 -2
View File
@@ -21,8 +21,8 @@ Currently, only the US 1.0 version of the game is supported. US 1.1, EU 1.0, EU
## Setup / Building
1. Install the dependencies
2. Place the ROM file within the `baseroms` directory.
**a.** Any DKR ROM should work as long as it is US 1.0, and it ends with one of these extensions: `.z64`, `.v64`, `.n64`, or `.rom`.
**b.** The name of the ROM file does not matter. It will be detected automatically from an md5 checksum.
**a.** Any DKR ROM should work as long as it is US 1.0.
**b.** The name of the ROM file does not matter, but it must end with one of these extensions: `.z64`, `.v64`, `.n64`, or `.rom`. It will be detected automatically from an md5 checksum.
**c.** If you use a byte-swapped or little-endian ROM, then it will automatically be converted to a big-endian (.z64) ROM file.
3. Run `make` in the main directory.
**a.** Use the `-jN` argument to use `N` number of threads to speed up building. For example, if you have a system with 4 cores / 4 threads, you should do `make -j4`.
+7
View File
@@ -0,0 +1,7 @@
recomp
cc
cfe
uopt
ugen
as1
err.english.cc
+1
View File
@@ -5,6 +5,7 @@ OUT := ../ido5.3_recomp
CXX := g++
GCC := gcc
DUMMY != echo "Statically recompiling IDO 5.3. This might take a while." >&2 || echo FAIL
DUMMY != mkdir -p $(OUT) >&2 || echo FAIL
cc: OPT_CFLAGS := -O2
Binary file not shown.