diff options
author | Chia-I Wu <[email protected]> | 2010-05-07 15:42:32 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2010-05-08 14:58:59 +0800 |
commit | 56530c90976e96694a034a04925affd806860f09 (patch) | |
tree | c71ea7a585b7454ffff3fb1bedebf81bf6622d44 /src/egl | |
parent | 63ab2509bf324812d9632c12528677724bdb8775 (diff) |
egl: Build drivers in $(TOP)/$(LIB_DIR)/egl.
There are enough EGL modules that they deserve a subdirectory, to avoid
polluting $(TOP)/$(LIB_DIR).
Diffstat (limited to 'src/egl')
-rw-r--r-- | src/egl/drivers/Makefile.template | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/egl/drivers/Makefile.template b/src/egl/drivers/Makefile.template index e9a614ce62d..ca2f7d5b3ad 100644 --- a/src/egl/drivers/Makefile.template +++ b/src/egl/drivers/Makefile.template @@ -12,14 +12,15 @@ # -EGL_DRIVER_PATH = $(TOP)/$(LIB_DIR)/$(EGL_DRIVER) +EGL_DRIVER_PATH = $(TOP)/$(LIB_DIR)/egl/$(EGL_DRIVER) EGL_OBJECTS = $(EGL_SOURCES:.c=.o) default: depend $(EGL_DRIVER_PATH) $(EGL_DRIVER_PATH): $(EGL_DRIVER) - $(INSTALL) $< $(TOP)/$(LIB_DIR) + @$(INSTALL) -d $(TOP)/$(LIB_DIR)/egl + $(INSTALL) $< $(TOP)/$(LIB_DIR)/egl $(EGL_DRIVER): $(EGL_OBJECTS) Makefile $(TOP)/src/egl/drivers/Makefile.template @$(MKLIB) -o $(EGL_DRIVER) -noprefix \ |