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

📄 makefile

📁 norflash的文件系统。 用于中低端手机开发的参考
💻
字号:
################################################################################
#  FILE NAME : Makefile
#
#  DESCRIPTION: This makefile defines the rules to build DBM
#
#  $Log: Makefile $
#  Revision 1.2  2003/11/21 10:16:54  shitong
#  added a new compiler option USE_OLDDBM, when define USE_OLDDBM=TRUE on command line, dbmflash2.c will be compiled and be linked, that use btflash.c to directly access flash.
#  Revision 1.1  2003/11/07 18:55:33  xuhua
#  Initial revision
#  Revision 1.1  2003/10/21 16:02:01  hanxiao99
#  Initial revision
#  Revision 1.1  2003/10/08 14:40:51  hanxiao99
#  Initial revision
#  Revision 1.1  2003/09/03 14:52:40  hanxiao99
#  Initial revision
#  Revision 1.1  2003/07/31 05:21:16  javese
#  Initial revision
#  Revision 1.3  2003/06/03 15:45:53  vtc
#  add inlcusion  of makefile_fdi to enable fdi header file search.
#  Revision 1.2  2002/10/23 10:39:36  Bing
#  Check in for Greg
#  Revision 1.1  2002/10/03 17:32:49  fpeng
#  Initial revision
#  Revision 1.3  2002/05/29 08:51:21  mshaver
#  Added VIA Technologies copyright.
#  Revision 1.2  2001/07/09 12:00:37  srodenba
#  Cleanup to maximize reuse.
#  Revision 1.1  2001/06/18 16:02:51  srodenba
#  Initial revision
#
# COPYRIGHT (c) 2001-2002 LSI Logic Corporation
# COPYRIGHT (c) 2002, VIA Technologies, Inc.
#
################################################################################

# Include the Common Makefile
# ---------------------------

include ../makefile_hdr

# Project Specific Modifications to global variables
# --------------------------------------------------

# Remove -zat4
# ------------

CC_SW_ZAT = 

# Remove ANSI Strict
# ------------------

CC_SW_ANSI =

# Object Files Required for the Library Build
# -------------------------------------------

OBJS_LOCAL  = dbmtask.o   \
              dbmver.o   
 
ifeq "$(USE_OLDDBM)" "TRUE"
OBJS_LOCAL += dbmflash2.o
else
OBJS_LOCAL += dbmflash.o
endif

# Name of Unit to Make
# --------------------

UNIT_NAME = dbm

#******************
#* Ending Include *
#******************

include ../makefile_end

⌨️ 快捷键说明

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