#BEGIN_LEGAL
#
#Copyright (c) 2025 Intel Corporation
#
#  Licensed under the Apache License, Version 2.0 (the "License");
#  you may not use this file except in compliance with the License.
#  You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
#  Unless required by applicable law or agreed to in writing, software
#  distributed under the License is distributed on an "AS IS" BASIS,
#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#  See the License for the specific language governing permissions and
#  limitations under the License.
#  
#END_LEGAL
=====================================================================
                    Building XED Examples (mfile.py)
=====================================================================

To build the XED examples, Python 3.9 or later is required.


=====================================================================
Static Library XED Build
=====================================================================

If your XED library is built as a static archive, use the following command:

  On Linux:
    $ ./mfile.py

  On Windows:
    $ C:\python3\python.exe mfile.py


=====================================================================
Shared Library XED Build
=====================================================================

If you are using a shared XED library (`.so` on Linux/macOS or `.dll` on Windows),
you must specify the `--shared` flag:

  On Linux:
    $ ./mfile.py --shared

  On Windows:
    $ C:\python3\python.exe mfile.py --shared
 

=====================================================================
Additional Options
=====================================================================

To view all available build options, use the `--help` flag:

    $ ./mfile.py --help
