makefile.in
来自「sdcc是为51等小型嵌入式cpu设计的c语言编译器支持数种不同类型的cpu」· IN 代码 · 共 59 行
IN
59 行
############################################################## Makefile for the SDCC/PIC14 Library###### Copyright (C) 2005 by Raphael Neider <rneider AT web.de>###### The library 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 GPL for details.###### $Id: Makefile.in 4305 2006-07-27 14:24:33Z borutr $###top_builddir = @top_builddir@top_srcdir = @top_srcdir@VPATH = @srcdir@srcdir = @srcdir@include $(top_builddir)Makefile.commonifeq (:,$(findstring :,$(LD) $(AS) $(LIB))).PHONY : allall % : @echo "gputils not found -- PIC14 library not built!"elseSUBDIRS = libsdcc libdev libmbuilddir = buildinstalldir = binexport installdirC_SRC = $(notdir $(wildcard $(srcdir)/*.c))S_SRC = $(notdir $(wildcard $(srcdir)/*.S))OBJS = $(C_SRC:.c=.o) $(S_SRC:.S=.o).PHONY : all clean clean-intermediate installall : installinstall : recurseclean : recurse $(Q)-$(RMDIR) "$(top_builddir)$(builddir)"distclean: clean $(Q)-$(RM) config.cache config.log config.status Makefile Makefile.common $(Q)-$(RMDIR) binclean-intermediate : recurseinclude $(top_srcdir)/Makefile.rulesendif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?