⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.common.in

📁 sdcc是为51等小型嵌入式cpu设计的c语言编译器支持数种不同类型的cpu
💻 IN
字号:
############################################################## Makefile.common.in 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.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 switchesARCH   ?= 452		# might be overwritten in libioCFLAGS ?=CFLAGS += -mpic16 -p18f$(ARCH)CFLAGS += --std-c99CFLAGS += -I. -I$(top_srcdir)/../../include/pic16#################################################### optimization flagsCFLAGS += --fommit-frame-pointerCFLAGS += --obanksel=9CFLAGS += --denable-peepsCFLAGS += --optimize-gotoCFLAGS += --optimize-cmpCFLAGS += --optimize-df#################################################### debugging PIC16 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 += -pp18f$(ARCH)ASFLAGS += -I$(top_srcdir)/../../include/pic16ASFLAGS += -I$(srcdir)#################################################### linker switchesLDFLAGS ?=LDFLAGS += -m -l -w#################################################### librarian switchesLIBFLAGS ?=LIBFLAGS += -c#################################################### programs to useCPP	= $(top_builddir)../../../bin/sdcppCC	= $(top_builddir)../../../bin/sdcc --asm=@GPASM@AS	= @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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -