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

📄 makefile

📁 使用BorlandC++4.5编译的一个MUD客户端程序
💻
字号:
head	2.1;access;symbols;locks; strict;comment	@# @;2.1date	95.10.24.15.46.14;	author tsurace;	state Release;branches;next	1.2;1.2date	95.10.19.01.02.41;	author tsurace;	state Beta;branches;next	1.1;1.1date	95.10.11.23.12.47;	author tsurace;	state Exp;branches;next	;desc@Borland makefile for win32 version.@2.1log@Roll.@text@# Makefile for Borland BC32 4.5
#
# This makefile builds vt as a library (.lib), which should be linked into
# the executable in the win32 directory.

CC=bcc32 -w-ccc -w-par -tW -3 -H- -DPROTOTYPES -DHARDCODE -DUSE_STDARG

#CFLAGS = -v         # Debugging
CFLAGS = -O2         # Optimized

OBJECTS = util.obj sconst.obj prmtab.obj console.obj signal.obj \
	keyboard.obj interp.obj remote.obj oper.obj func.obj \
	string.obj unode.obj prmt3.obj array.obj bobj.obj key.obj \
	main.obj prmt1.obj prmt2.obj prmt4.obj prmt5.obj const.obj \
	var.obj vtc.obj window.obj regexp.obj tmalloc.obj telnet.obj

# Tell make to perform dependency checks
.autodepend

.c.obj:
    $(CC) $(CFLAGS) -c $<
    tlib vtlib.lib -+ $@@

vtlib.lib: $(OBJECTS)
	@@echo Done!

clean:
	del *.obj

$(OBJECTS): vt.h struct.h string.h config.h extern.h makefile

# EOF #
@1.2log@Removed reference to (obsolete) makefile.bc@text@@1.1log@Initial revision@text@d30 1a30 1$(OBJECTS): vt.h struct.h string.h config.h extern.h makefile.bcd32 1a32 1# EOF #@

⌨️ 快捷键说明

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