makefile.in

来自「sdcc是为51等小型嵌入式cpu设计的c语言编译器支持数种不同类型的cpu」· IN 代码 · 共 62 行

IN
62
字号
############################################################## 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 + =
减小字号Ctrl + -
显示快捷键?