diff options
author | Brian Paul <[email protected]> | 2008-06-06 12:09:01 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-06-06 12:09:01 -0600 |
commit | c9739b20555847c398e7b52fb0e580d86f958430 (patch) | |
tree | 54e52968cd4b270cd3e473f998ce2309983070f0 /src/mesa/drivers/directfb/Makefile | |
parent | f8563ddddb9edf056c3c0a5f676f93620c4ce37d (diff) |
move directfb-libgl into drivers/directfb/Makefile
Diffstat (limited to 'src/mesa/drivers/directfb/Makefile')
-rw-r--r-- | src/mesa/drivers/directfb/Makefile | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/src/mesa/drivers/directfb/Makefile b/src/mesa/drivers/directfb/Makefile index dc71b385cac..945eb8b3d9b 100644 --- a/src/mesa/drivers/directfb/Makefile +++ b/src/mesa/drivers/directfb/Makefile @@ -25,11 +25,24 @@ DIRECTFBGL_MESA_OBJECTS = $(DIRECTFBGL_MESA_SOURCES:.c=.o) DIRECTFBGL_MESA = libidirectfbgl_mesa.so +LIBS = $(TOP)/src/mesa/libmesa.a $(TOP)/src/mesa/libglapi.a + + .c.o: $(CC) -c $(INCLUDE_DIRS) $(CFLAGS) $(DFB_CFLAGS) $< -o $@ -default: directfbgl_mesa +default: directfb-libgl directfbgl_mesa + + +# XXX this used to be in src/mesa/Makefile and is probably broken now +directfb-libgl: $(CORE_OBJECTS) + @ $(TOP)/bin/mklib -o $(GL_LIB) -linker '$(CC)' -ldflags '$(LDFLAGS)' \ + -major $(MESA_MAJOR) -minor $(MESA_MINOR) -patch $(MESA_TINY) \ + -install $(TOP)/$(LIB_DIR) $(MKLIB_OPTIONS) $(CORE_OBJECTS) \ + $(GL_LIB_DEPS) + + # Mesa DirectFBGL module directfbgl_mesa: $(DIRECTFBGL_MESA_OBJECTS) |