makefile-debug.mk

来自「高精度加法和减法 我自己写的 主要是实现了IntType类」· MK 代码 · 共 69 行

MK
69
字号
## 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 + =
减小字号Ctrl + -
显示快捷键?