📄 makefile
字号:
#*****************************************************************************## MAKEFILE - Rules for building the buffer 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 = buffer## The set of object files that comprise the buffer library.#OBJS = buffer.o## Include the common makefile definitions.#include $(ROOT)/makedefs## The default target. We build the buffer library.#.PHONY: defaultdefault: $(CROSSTOOLS)/$(TARGET).$(LIBEXT)## Clean out the library directory.#clean:: @rm -rf $(CROSSTOOLS)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -