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

📄 makefile.bcc

📁 SPLASH is a c++ class library that implements many of the Perl constructs and data types, including
💻 BCC
字号:
#
# Borland c++ makefile
#
CC = bcc32
CCFLAGS = -WX -v -Ic:\work\splash
.c.obj:
  $(CC) -c $(CCFLAGS) {$< }

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

RM = del

splash.obj: ../regexp.h ../splash.h
	$(CC) $(CCFLAGS) -c -osplash.obj ../splash.cpp

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

chgfnt.exe: chgfnt.obj splash.obj regex.obj
	$(CC) $(CCFLAGS) -DTESTCHGFNT -v chgfnt.obj splash.obj regex.obj

chgfnt.obj: chgfnt.cpp
	$(CC) -c $(CCFLAGS) -DTESTCHGFNT chgfnt.cpp

cislog.exe: cislog.obj splash.obj regex.obj
	$(CC) $(CCFLAGS) -DTESTcislog -v cislog.obj splash.obj regex.obj

cislog.obj: cislog.cpp
	$(CC) -c $(CCFLAGS) cislog.cpp

xcl.exe: xcl.obj splash.obj regex.obj tracer.obj
	$(CC) $(CCFLAGS) -v xcl.obj splash.obj regex.obj tracer.obj

xcl.obj: xcl.cpp
	$(CC) $(CCFLAGS) -DDOTRACER -c xcl.cpp

justify.exe: justify.obj splash.obj regex.obj tracer.obj
	$(CC) $(CCFLAGS) -v justify.obj splash.obj regex.obj tracer.obj

justify.obj: justify.cpp
	$(CC) $(CCFLAGS) -DDOTRACER -c justify.cpp

tstio.exe: tstio.obj splash.obj regex.obj
	$(CC) $(CCFLAGS) -v tstio.obj splash.obj regex.obj

tstio.obj: tstio.cpp
	$(CC) -c $(CCFLAGS) -DTSTIO tstio.cpp

setini.exe: setini.obj splash.obj regex.obj
	$(CC) $(CCFLAGS) setini.obj splash.obj regex.obj

assoc.exe: assoc.obj splash.obj regex.obj
	$(CC) $(CCFLAGS) -DTESTASSOC assoc.obj splash.obj regex.obj

assoc.obj: assoc.cpp
	$(CC) $(CCFLAGS) -c -DTESTASSOC assoc.cpp

tstiter.exe: tstiter.obj splash.obj regex.obj
	$(CC) $(CCFLAGS) tstiter.obj splash.obj regex.obj

clean:
	$(RM) *.obj *.exe

⌨️ 快捷键说明

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