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

📄 makefile.bak

📁 CC386 is a general-purpose 32-bit C compiler. It is not an optimizing compiler but given that the co
💻 BAK
字号:
# This makefile is for Borland make (IBM PC/80386+)

#		*Translator Definitions*
# Comment this next line out to generate the 68k compiler
# leave it in to generate the 386 compiler
#i386 = -Di386

CC = bcc32 -c -v
ASM = TASM /zi /ml /m2
LIB = tlib
LINK = tlink32
INCLUDEPATH = C:\bc5\INCLUDE;..\include

.c.obj:
  $(CC) $<
#		*List Macros*

EXE_dependencies = \
ALLOCATE.obj \
ARGS.obj \
DICT.obj \
ERROR.obj \
EXT.obj \
FATAL.obj \
HASH.obj \
IMPORT.obj \
LIB.obj \
LIST.obj \
MODULE.obj \
USAGE.obj \
ximport.obj  \
dll.obj

#		*Explicit Rules*
import.exe: upbuild $(EXE_dependencies) import.res
  $(LINK) /Tpe/ax/c/v/s/L\bc5\lib @&&|
        c0x32.obj $(EXE_dependencies)
        import.exe
        import.map
        import32.lib cw32.lib
        #
        import.res
|
import.res: import.rc ..\version.h
        brc32 -I\bc5\include -r import.rc

upbuild:
        ..\upbuild $(FULLBUILD) IMPORT
#		*Individual File Dependencies*
ximport.obj: ximport.c ..\version.h
        $(CC) ximport.c

⌨️ 快捷键说明

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