From d6e3c2ecec2d78a1f07f1701a472d646d3165f71 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Mon, 12 Aug 2013 12:22:00 -0700 Subject: [PATCH] Rename glaze.c to glaze-gl.c I'm planning to add a new glaze library with a "glaze.h" header file, so it will be natural to have its implementation in glaze.c. To prepare for that, I'm renaming the OpenGL API implementation from glaze.c to glaze-gl.c. --- Makefile | 4 ++-- glaze.c => glaze-gl.c | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename glaze.c => glaze-gl.c (100%) diff --git a/Makefile b/Makefile index bd7064f..c9db5c8 100644 --- a/Makefile +++ b/Makefile @@ -6,11 +6,11 @@ TARGETS = lib64/libGL.so.1 lib32/libGL.so.1 all: $(TARGETS) -lib64/libGL.so.1: glaze.c glapi.def +lib64/libGL.so.1: glaze-gl.c glapi.def mkdir -p lib64 $(CC) $(CFLAGS) -m64 -fPIC -shared -Wl,-Bsymbolic -o $@ $< -lib32/libGL.so.1: glaze.c specs/gl.def +lib32/libGL.so.1: glaze-gl.c specs/gl.def mkdir -p lib32 $(CC) $(CFLAGS) -m32 -fPIC -shared -Wl,-Bsymbolic -o $@ $< diff --git a/glaze.c b/glaze-gl.c similarity index 100% rename from glaze.c rename to glaze-gl.c -- 2.43.0