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

📄 makefile-impl.mk

📁 C编写的DES和MD5算法
💻 MK
字号:
# # Generated 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 customization code.## This makefile implements macros and targets common to all configurations.## NOCDDL# Building and Cleaning subprojects are done by default, but can be controlled with the SUB# macro. If SUB=no, subprojects will not be built or cleaned. The following macro# statements set BUILD_SUB-CONF and CLEAN_SUB-CONF to .build-reqprojects-conf# and .clean-reqprojects-conf unless SUB has the value 'no'SUB_no=NOSUBPROJECTS=${SUB_${SUB}}BUILD_SUBPROJECTS_=.build-subprojectsBUILD_SUBPROJECTS_NO=BUILD_SUBPROJECTS=${BUILD_SUBPROJECTS_${SUBPROJECTS}}CLEAN_SUBPROJECTS_=.clean-subprojectsCLEAN_SUBPROJECTS_NO=CLEAN_SUBPROJECTS=${CLEAN_SUBPROJECTS_${SUBPROJECTS}}# Project NamePROJECTNAME=DES# Active ConfigurationDEFAULTCONF=DebugCONF=${DEFAULTCONF}# All ConfigurationsALLCONFS=Debug Release # build.build-impl: .validate-impl 	@#echo "=> Running $@... Configuration=$(CONF)"	${MAKE} -f nbproject/Makefile-${CONF}.mk SUBPROJECTS=${SUBPROJECTS} .build-conf# clean.clean-impl: .validate-impl	@#echo "=> Running $@... Configuration=$(CONF)"	${MAKE} -f nbproject/Makefile-${CONF}.mk SUBPROJECTS=${SUBPROJECTS} .clean-conf# clobber .clobber-impl:	@#echo "=> Running $@..."	for CONF in ${ALLCONFS}; \	do \	    ${MAKE} -f nbproject/Makefile-$${CONF}.mk SUBPROJECTS=${SUBPROJECTS} .clean-conf; \	done# all .all-impl:	@#echo "=> Running $@..."	for CONF in ${ALLCONFS}; \	do \	    ${MAKE} -f nbproject/Makefile-$${CONF}.mk SUBPROJECTS=${SUBPROJECTS} .build-conf; \	done# configuration validation.validate-impl:	@if [ ! -f nbproject/Makefile-${CONF}.mk ]; \	then \	    echo ""; \	    echo "Error: can not find the makefile for configuration '${CONF}' in project ${PROJECTNAME}"; \	    echo "See 'make help' for details."; \	    echo "Current directory: " `pwd`; \	    echo ""; \	fi	@if [ ! -f nbproject/Makefile-${CONF}.mk ]; \	then \	    exit 1; \	fi# help.help-impl:	@echo "This makefile supports the following configurations:"	@echo "    ${ALLCONFS}"	@echo ""	@echo "and the following targets:"	@echo "    build  (default target)"	@echo "    clean"	@echo "    clobber"	@echo "    all"	@echo "    help"	@echo ""	@echo "Makefile Usage:"	@echo "    make [CONF=<CONFIGURATION>] [SUB=no] build"	@echo "    make [CONF=<CONFIGURATION>] [SUB=no] clean"	@echo "    make [SUB=no] clobber"	@echo "    make [SUB=no] all"	@echo "    make help"	@echo ""	@echo "Target 'build' will build a specific configuration and, unless 'SUB=no',"	@echo "    also build subprojects."	@echo "Target 'clean' will clean a specific configuration and, unless 'SUB=no',"	@echo "    also clean subprojects."	@echo "Target 'clobber' will remove all built files from all configurations and,"	@echo "    unless 'SUB=no', also from subprojects."	@echo "Target 'all' will will build all configurations and, unless 'SUB=no',"	@echo "    also build subprojects."	@echo "Target 'help' prints this message."	@echo ""	@echo "The active configuration (${ACTIVECONF}) is being used if the configuration is not specified."	@echo ""

⌨️ 快捷键说明

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