?? makefile
字號:
## $Id: Makefile 338 2008-11-10 04:15:26Z jcw $# $Revision: 338 $# $Author: jcw $# $Date: 2008-11-09 23:15:26 -0500 (Sun, 09 Nov 2008) $# $HeadURL: http://tinymicros.com/svn_public/arm/lpc2148_demo/trunk/sensors/Makefile $#SRC_FILES=sensors.c## Define all object files.#ARM_OBJ = $(SRC_FILES:.c=.o).PHONY: allifeq ($(STARTEDATTOP),true)all: $(ARM_OBJ)elseall : @echo "Project must be rebuilt from top level"endif$(ARM_OBJ) : %.o : %.c Makefile .depend $(CC) -c $(CFLAGS) $< -o $@ $(AR) rc $(COMMON)/common.a $@## The .depend files contains the list of header files that the# various source files depend on. By doing this, we'll only# rebuild the .o's that are affected by header files changing.#.depend: $(CC) $(CFLAGS) -M $(SRC_FILES) -o .dependifeq (.depend,$(wildcard .depend))include .dependendif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -