summaryrefslogtreecommitdiff
path: root/src/egl
diff options
context:
space:
mode:
authorChia-I Wu <olv@lunarg.com>2011-01-12 18:09:12 +0800
committerChia-I Wu <olv@lunarg.com>2011-01-12 18:10:15 +0800
commit4924cb9036cfe0f435a4a09db6f86d59a3a132d8 (patch)
treecbf2d107075a4e175c2ccd4463b830c5236e76b8 /src/egl
parent39812c48dfb18e6c3b896db8a8395eeebef8cc1b (diff)
egl: libEGL depends on LOCAL_LIBS.
So that libEGL is rebuilt whenever LOCAL_LIBS changes.
Diffstat (limited to 'src/egl')
-rw-r--r--src/egl/main/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/egl/main/Makefile b/src/egl/main/Makefile
index 0eb309c196..c710631688 100644
--- a/src/egl/main/Makefile
+++ b/src/egl/main/Makefile
@@ -93,7 +93,7 @@ default: depend library
# EGL Library
library: $(TOP)/$(LIB_DIR)/$(EGL_LIB_NAME)
-$(TOP)/$(LIB_DIR)/$(EGL_LIB_NAME): $(OBJECTS)
+$(TOP)/$(LIB_DIR)/$(EGL_LIB_NAME): $(OBJECTS) $(LOCAL_LIBS)
$(MKLIB) -o $(EGL_LIB) -linker '$(CC)' -ldflags '$(LDFLAGS)' \
-major $(EGL_MAJOR) -minor $(EGL_MINOR) \
-install $(TOP)/$(LIB_DIR) $(MKLIB_OPTIONS) \