summaryrefslogtreecommitdiff
path: root/tests/bcppmake/tests.bpg
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bcppmake/tests.bpg')
-rw-r--r--tests/bcppmake/tests.bpg33
1 files changed, 0 insertions, 33 deletions
diff --git a/tests/bcppmake/tests.bpg b/tests/bcppmake/tests.bpg
deleted file mode 100644
index ab1bb9c..0000000
--- a/tests/bcppmake/tests.bpg
+++ /dev/null
@@ -1,33 +0,0 @@
-#------------------------------------------------------------------------------
-VERSION = BWS.01
-#------------------------------------------------------------------------------
-!ifndef ROOT
-ROOT = $(MAKEDIR)\..
-!endif
-#------------------------------------------------------------------------------
-MAKE = $(ROOT)\bin\make.exe -$(MAKEFLAGS) -f$**
-DCC = $(ROOT)\bin\dcc32.exe $**
-BRCC = $(ROOT)\bin\brcc32.exe $**
-#------------------------------------------------------------------------------
-PROJECTS = libsword.lib parsekey.exe filtertest.exe mgrtest.exe
-#------------------------------------------------------------------------------
-default: $(PROJECTS)
-#------------------------------------------------------------------------------
-
-libsword.lib: libsword.bpr
- $(ROOT)\bin\bpr2mak -t$(ROOT)\bin\deflib.bmk $**
- $(ROOT)\bin\make -$(MAKEFLAGS) -f$*.mak
-
-parsekey.exe: parsekey.bpr
- $(ROOT)\bin\bpr2mak $**
- $(ROOT)\bin\make -$(MAKEFLAGS) -f$*.mak
-
-filtertest.exe: filtertest.bpr
- $(ROOT)\bin\bpr2mak $**
- $(ROOT)\bin\make -$(MAKEFLAGS) -f$*.mak
-
-mgrtest.exe: mgrtest.bpr
- $(ROOT)\bin\bpr2mak $**
- $(ROOT)\bin\make -$(MAKEFLAGS) -f$*.mak
-
-