📄 makefile.in
字号:
############################################################## Makefile for the GNU PIC Library###### Copyright (C) 2005 by Raphael Neider <rneider AT web.de>###### The GNU PIC Library was originally designed and### implemented by### Vangelis Rokas <vrokas@otenet.gr>###### It is currently maintained by### Raphael Neider <rneider AT web.de>###### This file may be distributed under the terms of the the### GNU General Public License (GPL). See COPYING for details.###### $Id: Makefile.in 4306 2006-07-27 17:32:43Z borutr $###top_builddir = @top_builddir@top_srcdir = @top_srcdir@srcdir = @srcdir@VPATH = @srcdir@SUBDIRS = adc i2c usartifeq ($(origin IO_ARCH),undefined)include $(top_builddir)Makefile.common.PHONY : all clean clean-intermediate install# I create $(builddir)/$${arch} right here in order to prevent # the sub-make's `builddir´ rules from aborting if another sub-make# already created the above directory (happened on Alpha).all clean-intermediate install : libio-recurseclean : libio-recurse $(Q)-[ ! -d "$(top_builddir)$(builddir)" ] || $(RMDIR) "$(top_builddir)$(builddir)"distclean : clean libio-recurse : $(Q)+cat $(top_builddir)pics.build \ | $(SED) -e "s,[ \t]*#.*$$,," \ | $(GREP) -v "^[ \t]*$$" \ | while read arch; do \ [ "x$${arch}" = "x" ] \ || ( $(MKDIR) "$(top_builddir)$(builddir)/$${arch}"; \ $(MAKE) MKLIB=libio18f$${arch}.lib builddir=$(builddir)/$${arch} ARCH=$${arch} IO_ARCH=$${arch} $(MAKECMDGOALS); ) \ || exit 1; \ doneinclude $(top_srcdir)/Makefile.ruleselseinclude $(top_srcdir)/Makefile.subdir# prevent library to be build in $(SUBDIRS) as wellunexport MKLIBendif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -