📄 makefile
字号:
## 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -