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

📄 makefile-release.mk

📁 高精度加法和减法 我自己写的 主要是实现了IntType类
💻 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/Release/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/Release/Cygwin-Windows/inttype.exedist/Release/Cygwin-Windows/inttype.exe: ${OBJECTFILES}	${MKDIR} -p dist/Release/Cygwin-Windows	${LINK.cc} -o dist/Release/Cygwin-Windows/inttype ${OBJECTFILES} ${LDLIBSOPTIONS} ${OBJECTDIR}/testmain.o: testmain.cpp 	${MKDIR} -p ${OBJECTDIR}	$(COMPILE.cc) -O2 -o ${OBJECTDIR}/testmain.o testmain.cpp${OBJECTDIR}/IntType.o: IntType.cpp 	${MKDIR} -p ${OBJECTDIR}	$(COMPILE.cc) -O2 -o ${OBJECTDIR}/IntType.o IntType.cpp# Subprojects.build-subprojects:# Clean Targets.clean-conf:	${RM} -r build/Release	${RM} dist/Release/Cygwin-Windows/inttype.exe# Subprojects.clean-subprojects:

⌨️ 快捷键说明

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