15bd8deadSopenharmony_ci# Copyright 2017-2022 The Khronos Group Inc. 25bd8deadSopenharmony_ci# SPDX-License-Identifier: Apache-2.0 35bd8deadSopenharmony_ci 45bd8deadSopenharmony_ci# Generate the PHP index file includes for OpenGL ARB, OpenGL ES, and 55bd8deadSopenharmony_ci# OpenGL EXT/Vendor extensions. 65bd8deadSopenharmony_ci 75bd8deadSopenharmony_ci# python3 is required. 85bd8deadSopenharmony_ci 95bd8deadSopenharmony_ciPYTHON = python3 105bd8deadSopenharmony_ciSCRIPTS = registry.py makeindex.py 115bd8deadSopenharmony_ciTARGETS = arbext.php esext.php glext.php scext.php 125bd8deadSopenharmony_ci 135bd8deadSopenharmony_ciall: $(TARGETS) 145bd8deadSopenharmony_ci 155bd8deadSopenharmony_ciarbext.php: $(SCRIPTS) 165bd8deadSopenharmony_ci $(PYTHON) makeindex.py arbnumber >$@ 175bd8deadSopenharmony_ci 185bd8deadSopenharmony_ciesext.php: $(SCRIPTS) 195bd8deadSopenharmony_ci $(PYTHON) makeindex.py esnumber >$@ 205bd8deadSopenharmony_ci 215bd8deadSopenharmony_ciglext.php: $(SCRIPTS) 225bd8deadSopenharmony_ci $(PYTHON) makeindex.py number >$@ 235bd8deadSopenharmony_ci 245bd8deadSopenharmony_ciscext.php: $(SCRIPTS) 255bd8deadSopenharmony_ci $(PYTHON) makeindex.py scnumber >$@ 265bd8deadSopenharmony_ci 275bd8deadSopenharmony_ciclean: 285bd8deadSopenharmony_ci -rm -f $(TARGETS) 29