makefile-debug.mk

来自「利用Netbeans(java)开发界面GUI事例」· MK 代码 · 共 64 行

MK
64
字号
## 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 custumized 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}/welcome.o# C Compiler FlagsCFLAGS=# CC Compiler FlagsCCFLAGS=CXXFLAGS=# Fortran Compiler FlagsFFLAGS=# Link Libraries and OptionsLDLIBSOPTIONS=# Build Targets.build-conf: ${BUILD_SUBPROJECTS} dist/Debug/welcome.exedist/Debug/welcome.exe: ${OBJECTFILES}	${MKDIR} -p dist/Debug	${LINK.cc} -o dist/Debug/welcome ${OBJECTFILES} ${LDLIBSOPTIONS} ${OBJECTDIR}/welcome.o: welcome.cc 	${MKDIR} -p ${OBJECTDIR}	$(COMPILE.cc) -g -o ${OBJECTDIR}/welcome.o welcome.cc# Subprojects.build-subprojects:# Clean Targets.clean-conf:	${RM} -r build/Debug	${RM} dist/Debug/welcome.exe# Subprojects.clean-subprojects:

⌨️ 快捷键说明

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