docs: Update emscripten compile instructions to reflect recent source rearrangement (#10179)

This commit is contained in:
algestam 2022-08-06 03:46:18 +02:00 committed by GitHub
parent 74ce6ba407
commit 62dcdca21c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -356,7 +356,7 @@ MAME directory):
.. code-block:: bash .. 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** 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 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 .. 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 The value of the **SUBTARGET** parameter serves only to differentiate multiple
builds and need not be set to any specific value. builds and need not be set to any specific value.