diff options
author | 2022-08-06 03:46:18 +0200 | |
---|---|---|
committer | 2022-08-06 01:46:18 +0000 | |
commit | 62dcdca21c2766bfc55e7e83afa80703e66d6080 (patch) | |
tree | 0ea2d384788e06dd5c527c598bcbd65040319fb7 /docs/source/initialsetup | |
parent | 74ce6ba407f6a54d035e11e0bf82e9da00e28bf7 (diff) |
docs: Update emscripten compile instructions to reflect recent source rearrangement (#10179)
Diffstat (limited to 'docs/source/initialsetup')
-rw-r--r-- | docs/source/initialsetup/compilingmame.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/source/initialsetup/compilingmame.rst b/docs/source/initialsetup/compilingmame.rst index f5c11636346..26867ce0eaf 100644 --- a/docs/source/initialsetup/compilingmame.rst +++ b/docs/source/initialsetup/compilingmame.rst @@ -356,7 +356,7 @@ MAME directory): .. code-block:: bash - emmake make SUBTARGET=pacmantest SOURCES=src/mame/drivers/pacman.cpp + emmake make SUBTARGET=pacmantest SOURCES=src/mame/pacman/pacman.cpp The **SOURCES** parameter should have the path to at least one driver **.cpp** file. The make process will attempt to locate and include all dependencies @@ -366,7 +366,7 @@ commas) if this process misses something. e.g. .. code-block:: bash - emmake make SUBTARGET=apple2e SOURCES=src/mame/drivers/apple2e.cpp,src/mame/machine/applefdc.cpp + emmake make SUBTARGET=apple2e SOURCES=src/mame/apple/apple2e.cpp,src/devices/machine/applefdc.cpp The value of the **SUBTARGET** parameter serves only to differentiate multiple builds and need not be set to any specific value. |