# SPDX-License-Identifier: GPL-3.0-or-later # # SPDX-FileCopyrightText: 2023 PeppemrintOS Team (peppermintosteam@proton.me) # This Make file is used to execute the different parts if the bubble system # by running for example deb64 will chain execute copy_fls, copy_flders and # inflate to build an ISO . To begin a fresh skeleton, you need to run only # fresh...after that. As build sare release for publication you can run nightly # or release to move the files to your web server location the # run the build you need. # None of these steps need to run as root all this can be ran ad a normal user PY_PATH = ~/bubbles/python_modules ## 64 bit ISOs dev64xfce: python3 ${PY_PATH}/build_iso.py set e-xfce b-dev64 deb64xfce: python3 ${PY_PATH}/build_iso.py set e-xfce b-deb64 deb64gfb: python3 ${PY_PATH}/build_iso.py set e-gnomefb b-deb64 dev64gfb: python3 ${PY_PATH}/build_iso.py set e-gnomefb b-dev64 deb64opb: python3 ${PY_PATH}/build_iso.py set e-openbox b-deb64 dev64opb: python3 ${PY_PATH}/build_iso.py set e-openbox b-dev64 loadeddeb64: python3 ${PY_PATH}/build_iso.py set b-loadxfdeb b-loadxfdeb64 loadxfdeb64: python3 ${PY_PATH}/build_iso.py set b-loadxfdev b-loadxfdev64 loadxfdev64: ## 32 bit ISOs deb32xfce: python3 ${PY_PATH}/build_iso.py set e-xfce b-deb32 dev32xfce: python3 ${PY_PATH}/build_iso.py set e-xfce b-dev32 deb32gfb: python3 ${PY_PATH}/build_iso.py set e-gnomefb b-deb32 dev32gfb: python3 ${PY_PATH}/build_iso.py set e-gnomefb b-dev32 deb32opb: python3 ${PY_PATH}/build_iso.py set e-openbox b-deb32 dev32opb: python3 ${PY_PATH}/build_iso.py set e-openbox b-dev32 ## arm ISOs debarmxfce: python3 ${PY_PATH}/build_iso.py set e-xfce b-debarm devarmxfce: python3 ${PY_PATH}/build_iso.py set e-xfce b-devarm debarmgfb: python3 ${PY_PATH}/build_iso.py set e-gnomefb b-debarm devarmgfb: python3 ${PY_PATH}/build_iso.py set e-gnomefb b-devarm debarmopb: python3 ${PY_PATH}/build_iso.py set e-openbox b-debarm devarmopb: python3 ${PY_PATH}/build_iso.py set e-openbox b-devarm release: python3 ${PY_PATH}/release.py # run this to start with a blank shell for # config folders/ fresh: python3 ${PY_PATH}/fresh_bubble.py