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

📄 extra.txt

📁 这是一些例程
💻 TXT
字号:

# << User_supplied_information >>

# Example 'user section' for PWB project makefiles,
# used in the PWB Tutorial.
#
# NOTE: This is not an standalone makefile.
#       Append this file to makefiles created by PWB.
#
# This user section adds a new target to build a project
# listing that shows the build type, options, and a list
# of files in the project.
#

!IFNDEF PROJ
!ERROR Not a standalone makefile.
!ENDIF

!IF $(DEBUG)
BUILD_TYPE = debug
!ELSE
BUILD_TYPE = release
!ENDIF

# Project files and information-list target
#
$(PROJ).bld : $(PROJFILE)
    @echo <<$(PROJ).bld : Project Build Information
Project Name:      $(PROJ)
Build Type:        $(BUILD_TYPE)
Program Arguments: $(RUNFLAGS)
Project Files
    $(FILES: =^
    )
Assembler Options
    Global:  $(AFLAGS_G)
    Debug:   $(AFLAGS_D)
    Release: $(AFLAGS_R)
Link Options
    Global:  $(LFLAGS_G)
    Debug:   $(LFLAGS_D)
    Release: $(LFLAGS_R)
<<KEEP

⌨️ 快捷键说明

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