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

📄 inole-b.mak

📁 英文版的 想要的话可以下载了 为大家服务
💻 MAK
字号:
#
# INOLE-B.MAK
# Common Linker Commands
#
# Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
#
# Kraig Brockschmidt, Microsoft
# Internet  :  kraigb@microsoft.com
# Compuserve:  >INTERNET:kraigb@microsoft.com
#

#
# This file should be included after the sample's makefile
# has defined INCLS, OBJS, OUTFILE, etc., and included inole-a.mak.
# The separation between inole-a.mak and this file is to allow
# a sample to change default definitions in inole-a.mak before
# including this file to build the sample.
#


$(OUTFILE) : $(OBJS) $(TARGET).res $(DEFFILE)
    echo ++++++++++
    echo Linking $@

#Note:  some of this is Intel only...
!ifndef WIN16
    echo $(LINK)                         > $(TARGET).lrf
    echo $(ENTRY)                       >> $(TARGET).lrf
    echo -def:win32.def                 >> $(TARGET).lrf
    echo -out:$(OUTFILE)                >> $(TARGET).lrf
    echo -machine:IX86                  >> $(TARGET).lrf
    echo -subsystem:windows4.0          >> $(TARGET).lrf
    echo -align:0x1000                  >> $(TARGET).lrf
    echo $(OBJS1)                       >> $(TARGET).lrf
    echo $(OBJS2)                       >> $(TARGET).lrf
    echo $(OBJS3)                       >> $(TARGET).lrf
    echo $(OBJS4)                       >> $(TARGET).lrf
    echo $(OBJS5)                       >> $(TARGET).lrf
    echo $(OBJS6)                       >> $(TARGET).lrf
    echo $(TARGET).res                  >> $(TARGET).lrf
    echo $(LIBS)                        >> $(TARGET).lrf
    echo $(LIBS32)                      >> $(TARGET).lrf

    link @$(TARGET).lrf
    del $(TARGET).lrf

!else

    echo +                               > $(TARGET).lrf
    echo $(OBJS1) +                     >> $(TARGET).lrf
    echo $(OBJS2) +                     >> $(TARGET).lrf
    echo $(OBJS3) +                     >> $(TARGET).lrf
    echo $(OBJS4) +                     >> $(TARGET).lrf
    echo $(OBJS5) +                     >> $(TARGET).lrf
    echo $(OBJS6)                       >> $(TARGET).lrf
    echo $(OUTFILE) $(LINK)             >> $(TARGET).lrf
    echo nul/li                         >> $(TARGET).lrf
    echo $(LIBS32A) +                   >> $(TARGET).lrf
    echo $(LIBS32B) +                   >> $(TARGET).lrf
    echo $(LIBS)                        >> $(TARGET).lrf
    echo win16.def                      >> $(TARGET).lrf

    link @$(TARGET).lrf
    del $(TARGET).lrf
    rc -v -K $(TARGET).res $(OUTFILE)

!endif

⌨️ 快捷键说明

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