makefile.in

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

IN
39
字号
############################################################## 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 4148 2006-05-01 20:47:12Z tecodev $###top_builddir = @top_builddir@top_srcdir   = @top_srcdir@srcdir       = @srcdir@VPATH        = @srcdir@SUBDIRS = MKLIB	= device_libsC_FILES = $(notdir $(wildcard $(srcdir)/*.c))TARGETS = $(OBJS:.o=.lib)# allow invoking make without arguments (otherwise# [...]/devicelibs would be the default target)suball : all.PHONY : $(top_builddir)$(builddir)/device_libs suball$(top_builddir)$(builddir)/device_libs :	$(Q)+$(foreach dev,$(C_FILES:.c=),$(MAKE) $(top_builddir)$(builddir)/$(dev).lib LIB_O=$(top_builddir)$(builddir)/$(dev).o;)include $(top_srcdir)/Makefile.subdir

⌨️ 快捷键说明

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