config.linux

来自「使用miniGUI模拟器的简单开发例子(值得参考)」· LINUX 代码 · 共 56 行

LINUX
56
字号
#----------------------------------------------------------------------# Configuration Section#----------------------------------------------------------------------# Source directory.srcdir = $(shell sh -c pwd)# Common prefix for installation directories.# NOTE: This directory must exist when you start the install.# NOTE: Don't modify TOPDIR.TOPDIR=prefix = $(TOPDIR)/usr/localexec_prefix = $(prefix)# Directory where the shared stubs and static library will be installed.libdir = $(prefix)/lib# Directory where the shared library will be installed.sharedlibdir = $(prefix)/lib# Directory where the resource files will be installed.resdir = $(prefix)/lib/minigui# Directory where the demos will be installed.bindir = $(exec_prefix)/bin/minigui# Directory where the run-time configuration files will be installed.cfgdir = $(TOPDIR)/etc# Directory where the header files will be installed.includedir = $(prefix)/include/minigui# Directory where the man files will be installed.mandir = $(prefix)/man#----------------------------------------------------------------------# Compiler Section -- don't edit following lines.#----------------------------------------------------------------------# Compiler used.CC       = gccCFLAGS   = $(WARN) $(INCLUDES) $(OPTIMIZE) $(DEFINES)WARN     = -WallOPTIMIZE = -fomit-frame-pointer -fno-strength-reduce -O2 -pipe -m486DEFINES  = -D_REENTRANT# Utilites used.AR    = arINSTALL_DIR     = install -d -m 755 -o root -g binINSTALL_PROGRAM = install -c -s -m 4755 -o root -g binINSTALL_SHLIB   = install -c -m 755 -o root -g binINSTALL_LIB     = install -c -m 444 -o root -g binINSTALL_DATA    = install -c -m 644 -o root -g binMAKE = make 

⌨️ 快捷键说明

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