From 367ed6280873657dcde3e9d5cda31c43b3b36538 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Fonseca?= Date: Thu, 25 Nov 2010 11:35:16 +0000 Subject: [PATCH] Rename GL spec parser. --- helpers/Makefile | 12 ++++++------ helpers/{spec.py => glspec.py} | 0 2 files changed, 6 insertions(+), 6 deletions(-) rename helpers/{spec.py => glspec.py} (100%) diff --git a/helpers/Makefile b/helpers/Makefile index d332cac..c12939a 100644 --- a/helpers/Makefile +++ b/helpers/Makefile @@ -20,13 +20,13 @@ download: \ %.spec %.tm: wget -N http://www.opengl.org/registry/api/$@ -glapi.py: spec.py gl.tm gl.spec - python spec.py gl gl.tm gl.spec > $@ +glapi.py: glspec.py gl.tm gl.spec + python glspec.py gl gl.tm gl.spec > $@ -glxapi.py: spec.py glx.tm glx.spec glxext.spec - python spec.py glX glx.tm glx.spec glxext.spec > $@ +glxapi.py: glspec.py glx.tm glx.spec glxext.spec + python glspec.py glX glx.tm glx.spec glxext.spec > $@ -wglapi.py: spec.py wgl.tm wgl.spec wglext.spec - python spec.py wgl wgl.tm wgl.spec wglext.spec > $@ +wglapi.py: glspec.py wgl.tm wgl.spec wglext.spec + python glspec.py wgl wgl.tm wgl.spec wglext.spec > $@ .PRECIOUS: %.spec %.tm diff --git a/helpers/spec.py b/helpers/glspec.py similarity index 100% rename from helpers/spec.py rename to helpers/glspec.py -- 2.43.0