makefile

来自「Small Device C Compiler 面向Inter8051」· 代码 · 共 68 行

TXT
68
字号
## Makefile - toplevel makefile that builds everything## This file is part of the GNU PIC Library.## January, 2004# The GNU PIC Library is maintained by,# 	Vangelis Rokas <vrokas@otenet.gr>## $Id: Makefile,v 1.1 2004/01/12 22:10:38 vrokas Exp $##include ./Makefile.common# The devices to build libraries forDEVICES	=	18f242	\		18f248	\		18f252	\		18f258	\		18f442	\		18f448	\		18f452	\		18f458all: compile-librarycompile-library: compile-sources build-librarybuild-library:	@for temp in $(DEVICES) ; do		\		$(AR) -c pic$$temp.lib pic$$temp/pic$$temp.o ; \	done ;compile-sources:	@for temp in $(DEVICES); do				\		$(MAKE) -C pic$$temp make-target;	\	doneclean: all-clean	$(RM) -f pic*.libclean-intermediate:	@for temp in $(DEVICES) ; do \		$(MAKE) -C pic$$temp clean-intermediate; \	donereal-clean:	@for temp in $(DEVICES) ; do \		$(MAKE) -C pic$$temp real-clean; \	done ;	rm -f config.* ;dep: all-depall-clean:	for temp in $(DEVICES) ; do		\		$(MAKE) -C pic$$temp clean;	\	doneall-dep:	for temp in $(DEVICES) ; do		\		$(MAKE) -C pic$$temp dep;	\	done

⌨️ 快捷键说明

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