📄 makefile.common
字号:
## ----------------------------------------------------------------------# T-Kernel / Standard Extension## Copyright (C) 2006 by Ken Sakamura. All rights reserved.# T-Kernel / Standard Extension is distributed # under the T-License for T-Kernel / Standard Extension.# ----------------------------------------------------------------------## Version: 1.00.00# Released by T-Engine Forum(http://www.t-engine.org) at 2006/8/11.## ----------------------------------------------------------------------### Makefile for gmake# T-Kernel/SE - Clock (common description)## source file dependencies (generated automatically)DEPS = DependenciesDEPENDENCIES_OUTPUT := $(DEPS)# ----------------------------------------------------------------------------# target objectTARGET = clkmgr.oTKSE_INSTALL_DIR = ../../../build/$(TETYPE)_$(MACHINE)S = ../../src# common source filesSRC += clock.cHEADER_TKSE = $(BD)/tkse/include $(BD)/include/tkseVPATH += $(S)HEADER := $(S) $(HEADER_TKSE) $(HEADER)OBJ = $(addsuffix .o, $(basename $(SRC)))# compiler optionsCFLAGS += $(CFLAGS_WARNING)# ----------------------------------------------------------------------------.PHONY: all clean installALL = $(TARGET)all: $(ALL)$(TARGET): $(OBJ) $(LINK_R.o) $^ $(OUTPUT_OPTION)install: $(BD)/etc/backup_copy -t $(TARGET) $(TKSE_INSTALL_DIR)clean: $(RM) $(OBJ) $(ALL) $(DEPS)# generate dependencies$(DEPS): ; touch $(DEPS)include $(DEPS)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -