mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
vl: creating cleaner way of naming libraries
This commit is contained in:
parent
050dfe9caf
commit
17ea7d16bd
4 changed files with 6 additions and 5 deletions
|
|
@ -1,6 +1,5 @@
|
|||
# This makefile template is used to build libXvMCg3dvl.so
|
||||
|
||||
LIBBASENAME = XvMCg3dvl
|
||||
LIBNAME = lib$(LIBBASENAME).so
|
||||
LIB_GLOB=lib$(LIBBASENAME).*so*
|
||||
XVMC_MAJOR = 1
|
||||
|
|
@ -57,7 +56,7 @@ clean:
|
|||
-rm -f depend depend.bak
|
||||
|
||||
install: default
|
||||
$(INSTALL) -d $(DESTDIR)$(DRI_DRIVER_INSTALL_DIR)
|
||||
$(MINSTALL) -m 755 $(TOP)/$(LIB_DIR)/gallium/$(LIB_GLOB) $(DESTDIR)$(DRI_DRIVER_INSTALL_DIR)
|
||||
$(INSTALL) -d $(DESTDIR)$(INSTALL_DIR)/$(LIB_DIR)
|
||||
$(MINSTALL) -m 755 $(TOP)/$(LIB_DIR)/gallium/$(LIB_GLOB) $(DESTDIR)$(INSTALL_DIR)/$(LIB_DIR)
|
||||
|
||||
include depend
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
TOP = ../../../..
|
||||
include $(TOP)/configs/current
|
||||
|
||||
#LIBNAME =
|
||||
LIBBASENAME = XvMCnouveau
|
||||
|
||||
PIPE_DRIVERS = \
|
||||
$(TOP)/src/gallium/winsys/g3dvl/dri/libvldri.a \
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
TOP = ../../../..
|
||||
include $(TOP)/configs/current
|
||||
|
||||
#LIBNAME =
|
||||
LIBBASENAME = XvMCr600
|
||||
|
||||
PIPE_DRIVERS = \
|
||||
$(TOP)/src/gallium/drivers/r600/libr600.a \
|
||||
|
|
|
|||
|
|
@ -1,6 +1,8 @@
|
|||
TOP = ../../../..
|
||||
include $(TOP)/configs/current
|
||||
|
||||
LIBBASENAME = XvMCsoftpipe
|
||||
|
||||
DRIVER_DEFINES = -DGALLIUM_SOFTPIPE
|
||||
DRIVER_INCLUDES =
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue