diff options
author | Chia-I Wu <[email protected]> | 2011-01-12 18:09:12 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2011-01-12 18:10:15 +0800 |
commit | 4924cb9036cfe0f435a4a09db6f86d59a3a132d8 (patch) | |
tree | cbf2d107075a4e175c2ccd4463b830c5236e76b8 /src/egl/main | |
parent | 39812c48dfb18e6c3b896db8a8395eeebef8cc1b (diff) |
egl: libEGL depends on LOCAL_LIBS.
So that libEGL is rebuilt whenever LOCAL_LIBS changes.
Diffstat (limited to 'src/egl/main')
-rw-r--r-- | src/egl/main/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/egl/main/Makefile b/src/egl/main/Makefile index 0eb309c1969..c710631688c 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) \ |