From 6df1185af19e06e7bb210b3c17b44538a540ce90 Mon Sep 17 00:00:00 2001 From: Themaister Date: Thu, 5 Jun 2014 14:30:45 +0200 Subject: [PATCH] Add EXTRA_GL_LIBS to libretro-test-gl. --- libretro-test-gl/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libretro-test-gl/Makefile b/libretro-test-gl/Makefile index 0389b42afe..4c4b175d1b 100644 --- a/libretro-test-gl/Makefile +++ b/libretro-test-gl/Makefile @@ -120,7 +120,7 @@ endif all: $(TARGET) $(TARGET): $(OBJECTS) - $(CC) $(fpic) $(SHARED) $(INCLUDES) -o $@ $(OBJECTS) $(LIBS) -lm + $(CC) $(fpic) $(SHARED) $(INCLUDES) -o $@ $(OBJECTS) $(LIBS) -lm $(EXTRA_GL_LIBS) %.o: %.c $(CC) $(CFLAGS) -c -o $@ $<