📄 makefile
字号:
## Makefile for SENSE status file analyzer## Copyright 2006 - Mark Lisee## This file is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2 of the License, or# (at your option) any later version.## This file is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the# GNU General Public License for more details.## You should have received a copy of the GNU General Public License# along with this file; if not, write to the Free Software# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA#include ../../misc/basicDefinitions.mkinclude ../misc/projectDefinitions.mk# Define the targetsC_TARGETS = CPP_TARGETS = findNeighbors displayNodes sortNodes countNeighbors connectivityOBJC_TARGETS = # Define the files common to all targetsC_CMN_OBJS =CPP_CMN_OBJS = parseRtns usage file commonRtnsOBJC_CMN_OBJS =SCAN_FILE = stateScanner.lPARSE_FILE = stateParser.y# The file file.cpp (and file.h) are actually contained in the parseConfig treevpath file.cpp ../../libraries/parseConfig/src# cause lex to generate debugging code#SFLAGS += -d# cause yacc to generate trace code# also need to set yydebug=1 before calling parse()#PARSE_FLAGS += -tINC_PATHS = ../inc ../../libraries/parseConfig/incLIB_PATHS = ../lib# Uncomment these lines as required for the directoryMAKE_PARSER_LIB := YESUSE_PARSER_LIB := YES# optimization flags#OPTIMIZATION = -O0 -ggdbOPTIMIZATION = -O3 #-march=pentium4 -mfpmath=sse# flags for all source filesCOMPILE_FLAGS += -Wall# flags for specific languages#C_FLAGS +=#CPP_FLAGS +=#OBJC_FLAGS +=include ../../misc/basicRules.mk
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -