mirror of
https://github.com/kanjitalk755/macemu.git
synced 2025-01-08 19:36:07 +00:00
38 lines
1.2 KiB
Plaintext
38 lines
1.2 KiB
Plaintext
How to build this source
|
|
------------------------
|
|
|
|
1) Install the OS X Development tools
|
|
|
|
Source should build on either 10.0 or 10.1
|
|
(If anyone wants a version that will compile on Public Beta, email me)
|
|
|
|
2) If grabbing this source from a tarball, put this MacOSX directory in
|
|
BasiliskII-1.0/src. The tarball is currently only compatible with the
|
|
BasiliskII_src_15012002.tar.gz (1.0) snapshot.
|
|
Open a Terminal, and cd to BasiliskII-1.0/src/MacOSX
|
|
|
|
3) sh 1_prepare_files.sh
|
|
|
|
This creates some symlinks to files in the Unix source and
|
|
/usr/libexec directories, generates ./configure, and runs it.
|
|
|
|
The end result is a Makefile and some header files
|
|
|
|
4) make
|
|
|
|
This should generate the uae_cpu emulator core's source,
|
|
and then the application.
|
|
|
|
* It is also possible to use the OS X integrated development environment
|
|
(i.e. the "Project Builder" IDE) to build the application, instead of make.
|
|
Instead of step 4) above, do these steps:
|
|
|
|
4) make ide
|
|
|
|
This should generate the uae_cpu emulator core's source,
|
|
and then open the IDE with the file in BasiliskII.pbproj
|
|
|
|
5) From the Build menu, choose 'Build' or 'Build & Run'
|
|
|
|
This should build everything
|