📄 makefile-debug.mk
字号:
## Gererated Makefile - do not edit!## Edit the Makefile in the project folder instead (../Makefile). Each target# has a -pre and a -post target defined where you can add customized code.## This makefile implements configuration specific macros and targets.# EnvironmentMKDIR=mkdirCP=cpCCADMIN=CCadminRANLIB=ranlibCC=gcc.exeCCC=g++.exeCXX=g++.exeFC=# Include project Makefileinclude Makefile# Object DirectoryOBJECTDIR=build/Debug/Cygwin-Windows# Object FilesOBJECTFILES= \ ${OBJECTDIR}/testmain.o \ ${OBJECTDIR}/IntType.o# C Compiler FlagsCFLAGS=# CC Compiler FlagsCCFLAGS=CXXFLAGS=# Fortran Compiler FlagsFFLAGS=# Link Libraries and OptionsLDLIBSOPTIONS=# Build Targets.build-conf: ${BUILD_SUBPROJECTS} dist/Debug/Cygwin-Windows/inttype.exedist/Debug/Cygwin-Windows/inttype.exe: ${OBJECTFILES} ${MKDIR} -p dist/Debug/Cygwin-Windows ${LINK.cc} -o dist/Debug/Cygwin-Windows/inttype ${OBJECTFILES} ${LDLIBSOPTIONS} ${OBJECTDIR}/testmain.o: testmain.cpp ${MKDIR} -p ${OBJECTDIR} $(COMPILE.cc) -g -o ${OBJECTDIR}/testmain.o testmain.cpp${OBJECTDIR}/IntType.o: IntType.cpp ${MKDIR} -p ${OBJECTDIR} $(COMPILE.cc) -g -o ${OBJECTDIR}/IntType.o IntType.cpp# Subprojects.build-subprojects:# Clean Targets.clean-conf: ${RM} -r build/Debug ${RM} dist/Debug/Cygwin-Windows/inttype.exe# Subprojects.clean-subprojects:
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -