summaryrefslogtreecommitdiff
path: root/src/egl/drivers/Makefile.template
diff options
context:
space:
mode:
authorChia-I Wu <olv@lunarg.com>2010-05-07 15:42:32 +0800
committerChia-I Wu <olv@lunarg.com>2010-05-08 14:58:59 +0800
commit56530c90976e96694a034a04925affd806860f09 (patch)
treec71ea7a585b7454ffff3fb1bedebf81bf6622d44 /src/egl/drivers/Makefile.template
parent63ab2509bf324812d9632c12528677724bdb8775 (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/drivers/Makefile.template')
-rw-r--r--src/egl/drivers/Makefile.template5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/egl/drivers/Makefile.template b/src/egl/drivers/Makefile.template
index e9a614ce62..ca2f7d5b3a 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 \