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

📄 makefile

📁 基于EP7312的MP3播放器源代码,包括MCU和PC端代码.
💻
字号:
#*****************************************************************************## MAKEFILE - Builds the tools used by the build.## Copyright (c) 2001 Cirrus Logic, Inc.##*****************************************************************************## The location of the root directory relative to this directory.#ROOT = ..## Include the automatically generated make.inc.#-include $(ROOT)/make.inc## Include the common makefile definitions.#include $(ROOT)/makedefs## The default rule, which builds the download utility.#.PHONY: defaultdefault: buildimg$(PROGEXT) package$(PROGEXT)## A rule to build the buildimg utility.#buildimg$(PROGEXT): buildimg.c makefile $(ROOT)/make.inc $(ROOT)/makedefs	$(NATIVECC) -o buildimg$(PROGEXT) buildimg.c## A rule to build the package utility.#package$(PROGEXT): package.c makefile $(ROOT)/make.inc $(ROOT)/makedefs	$(NATIVECC) -o package$(PROGEXT) package.c## A rule to remove the build products.#clean::	@rm -f buildimg$(PROGEXT) package$(PROGEXT)

⌨️ 快捷键说明

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