⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rules.mk

📁 Ftee type Demo for Linux open source
💻 MK
字号:
#**************************************************************************
#*
#*  BeOS specific rules file, used to compile the BeOS graphics driver
#*  to the graphics subsystem
#*
#**************************************************************************

ifeq ($(PLATFORM),beos)

  # directory of the BeOS graphics driver
  #
  GR_BEOS := $(GRAPH)/beos

  # add the BeOS driver object file to the graphics library `graph.a'
  #
  GRAPH_OBJS += $(OBJ_DIR)/grbeos.$(SO)

  DEVICES         += BEOS
  DEVICE_INCLUDES += $(GR_BEOS)

  # the rule used to compile the graphics driver
  #
  $(OBJ_DIR)/grbeos.$(SO): $(GR_BEOS)/grbeos.cpp $(GR_BEOS)/grbeos.h
	  $(CC) $(CFLAGS) $(GRAPH_INCLUDES:%=$I%) \
                $I$(subst /,$(COMPILER_SEP),$(GR_BEOS)) \
                $(X11_INCLUDE:%=$I%) \
                $T$(subst /,$(COMPILER_SEP),$@ $<)

  # Now update GRAPH_LINK according to the compiler used on BeOS
  GRAPH_LINK += -lbe -lstdc++.r4

endif

# EOF

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -