makefile

来自「基于EP7312的MP3播放器源代码,包括MCU和PC端代码.」· 代码 · 共 47 行

TXT
47
字号
#*****************************************************************************## MAKEFILE - Rules for building the ADPCM library.## 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## The name of the image that we are building.#TARGET = adpcm## The set of object files that comprise the ADPCM library.#OBJS = g711.o \       g721.o \       g72x.o## Include the common makefile definitions.#include $(ROOT)/makedefs## The default target.  We build the ADPCM library.#.PHONY: defaultdefault: $(CROSSTOOLS)/$(TARGET).$(LIBEXT)## Clean out the library directory.#clean::	@rm -rf $(CROSSTOOLS)

⌨️ 快捷键说明

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