mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-27 01:50:10 +01:00
directfb changes (Claudio Ciccani)
This commit is contained in:
parent
6650264802
commit
bdbdab837e
1 changed files with 26 additions and 0 deletions
|
|
@ -26,6 +26,8 @@ default:
|
|||
$(MAKE) osmesa-only ; \
|
||||
elif [ "$(DRIVER_DIRS)" = "beos" ]; then \
|
||||
$(MAKE) beos ; \
|
||||
elif [ "$(DRIVER_DIRS)" = "directfb" ]; then \
|
||||
$(MAKE) directfb; \
|
||||
else \
|
||||
$(MAKE) stand-alone ; \
|
||||
fi
|
||||
|
|
@ -69,6 +71,30 @@ drivers-dri:
|
|||
cd drivers/dri ; $(MAKE)
|
||||
|
||||
|
||||
|
||||
#####################################################################
|
||||
# Stand-alone Mesa libGL, no built-in drivers (DirectFB)
|
||||
|
||||
LIBGL_CORE_SOURCES = \
|
||||
$(CORE_SOURCES) \
|
||||
$(ASM_SOURCES)
|
||||
|
||||
LIBGL_CORE_OBJECTS = \
|
||||
$(CORE_OBJECTS) \
|
||||
$(ASM_SOURCES:.S=.o)
|
||||
|
||||
# Make libGL from core object files
|
||||
libgl-core: $(LIBGL_CORE_OBJECTS)
|
||||
@ CC=$(CC) CXX=$(CXX) $(TOP)/bin/mklib -o $(GL_LIB) \
|
||||
-major $(MESA_MAJOR) -minor $(MESA_MINOR) -patch $(MESA_TINY) \
|
||||
-install $(LIB_DIR) $(MKLIB_OPTIONS) $(LIBGL_CORE_OBJECTS) $(GL_LIB_DEPS)
|
||||
|
||||
# DirectFB driver target
|
||||
directfb: depend subdirs libgl-core
|
||||
cd drivers/directfb; $(MAKE)
|
||||
|
||||
|
||||
|
||||
######################################################################
|
||||
# Stand-alone Mesa libGL and libOSMesa
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue