makefile.common.in

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

IN
88
字号
############################################################## Makefile.common.in 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.common.in 4148 2006-05-01 20:47:12Z tecodev $###SHELL = bash#################################################### verboseness#Q	?= 		# be verboseQ	?= @		# be quiet# be really quiet (suppress "Entering/Leaving directory...")#MAKEFLAGS := $(filter-out -s,$(MAKEFLAGS)) -s#################################################### compiler switches# ARCH might be overwritten in libioARCH   ?= 877CFLAGS ?=CFLAGS += -mpic14 -p16f$(ARCH)CFLAGS += --std-c99CFLAGS += -I. -I$(top_srcdir)/../../include/pic#################################################### optimization flags#################################################### debugging PIC14 port#CFLAGS += --debug-ralloc#CFLAGS += --debug-xtra#CFLAGS += --pcode-verboseCFLAGS += --i-code-in-asm#################################################### debugging SDCC's optimizations#CFLAGS += --nooverlay#CFLAGS += --nogcse#CFLAGS += --nolabelopt#CFLAGS += --noinvariant#CFLAGS += --noinduction#CFLAGS += --nojtbound#CFLAGS += --noloopreverse#################################################### assembler switchesASFLAGS ?=ASFLAGS += -pp16f$(ARCH)ASFLAGS += -I$(top_srcdir)/../../include/picASFLAGS += -I. -I$(srcdir)#################################################### linker switchesLDFLAGS ?=LDFLAGS += -m -l -w#################################################### librarian switchesLIBFLAGS ?=LIBFLAGS += -c#################################################### programs to useCPP	= $(top_builddir)../../../bin/sdcppCC	= $(top_builddir)../../../bin/sdccAS	= @GPASM@LD	= @GPLINK@LIB	= @GPLIB@SED	?= @SED@GREP	?= @EGREP@MKDIR	?= @MKDIR@RMDIR	?= @RMDIR@CP	?= @CP@MV	?= @MV@RM	?= @RM@

⌨️ 快捷键说明

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