makefile
来自「mesa-6.5-minigui源码」· 代码 · 共 55 行
TXT
55 行
# src/mesa/drivers/directfb/MakefileTOP = ../../../..include $(TOP)/configs/currentINCLUDE_DIRS = \ -I$(TOP)/include \ -I$(TOP)/src/mesa \ -I$(TOP)/src/mesa/main \ -I$(TOP)/src/mesa/glapi \ -I$(TOP)/src/mesa/math \ -I$(TOP)/src/mesa/tnl \ -I$(TOP)/src/mesa/shader \ -I$(TOP)/src/mesa/swrast \ -I$(TOP)/src/mesa/swrast_setupDFB_CFLAGS = $(shell pkg-config --cflags directfb)DFB_MODULEDIR = $(shell pkg-config --variable=moduledir directfb-internal)DIRECTFBGL_MESA_SOURCES = ../common/driverfuncs.c idirectfbgl_mesa.cDIRECTFBGL_MESA_OBJECTS = $(DIRECTFBGL_MESA_SOURCES:.c=.o)DIRECTFBGL_MESA = libidirectfbgl_mesa.so.c.o: $(CC) -c $(INCLUDE_DIRS) $(CFLAGS) $(DFB_CFLAGS) $< -o $@default: directfbgl_mesa# Mesa DirectFBGL moduledirectfbgl_mesa: $(DIRECTFBGL_MESA_OBJECTS) $(CC) -shared $(CFLAGS) $(DIRECTFBGL_MESA_OBJECTS) -o $(DIRECTFBGL_MESA) \ -Wl,-soname -Wl,$(DIRECTFBGL_MESA) -L$(TOP)/lib -lGL -lminstall: @if test -d $(DFB_MODULEDIR); then \ echo "Installing DirectFBGL module."; \ else \ echo "*** Failed to determine DirectFB module's directory."; \ echo "*** Installation aborted."; \ exit 1; \ fi; test -d $(DFB_MODULEDIR)/interfaces/IDirectFBGL/ || mkdir $(DFB_MODULEDIR)/interfaces/IDirectFBGL/ install -m 755 $(DIRECTFBGL_MESA) $(DFB_MODULEDIR)/interfaces/IDirectFBGL/clean: rm -f *.o *.so
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?