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

📄 makefile.bcc

📁 SPLASH is a c++ class library that implements many of the Perl constructs and data types, including
💻 BCC
字号:
#
#
# Borland c++ Makefile for splash and tests
#
#
CC = bcc32
CCFLAGS = -WX -v -Ic:\bc4\include

#		*Implicit Rules*
.c.obj:
  $(CC) -c $(CCFLAGS) {$< }

.cpp.obj:
  $(CC) $(CCFLAGS) -c {$< }

spltest.exe: tsplash.obj regex.obj
	$(CC) $(CCFLAGS) -c -DTEST spltest.cpp
	$(CC) $(CCFLAGS) spltest.obj tsplash.obj regex.obj

slicetst.exe: slicetst.obj tsplash.obj regex.obj
	$(CC) -c $(CCFLAGS) -DTEST slicetst.cpp
	$(CC) $(CCFLAGS) slicetst.obj tsplash.obj regex.obj

tsplash.obj: splash.cpp regexp.h splash.h
	$(CC) -c $(CCFLAGS) -DTEST splash.cpp
	move splash.obj tsplash.obj

splash.obj: regexp.h splash.h

regex.obj: regex.c
	$(CC) $(CCFLAGS) -c -w-pro regex.c

test: spltest.exe slicetst.exe
	spltest > x1
	diff x1 splash.v
	slicetst > x2
	diff x2 slicetst.v

⌨️ 快捷键说明

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