home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Press 1997 July
/
Sezamfile97_1.iso
/
msdos
/
c
/
cbase11.a03
/
CBASE11.ZIP
/
DOS
/
MSCALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-01-01
|
744b
|
34 lines
@echo off
rem
rem Copyright (c) 1989-1992 Citadel Software, Inc.
rem All Rights Reserved
rem
rem mscall.bat 1.7 - 93/01/01
rem DOS batch file to make" all libraries.
rem Microsoft C, DOS, large memory model.
@echo on
cd manx
nmake -f dos.mak "CCOM=msc" "MDL=S" all
cd ..\xtend
nmake -f dos.mak "CCOM=msc" "MDL=L" all
cd ..\blkio
nmake -f dos.mak "CCOM=msc" "MDL=L" all
cd ..\lseq
nmake -f dos.mak "CCOM=msc" "MDL=L" all
cd ..\btree
nmake -f dos.mak "CCOM=msc" "MDL=L" all
cd ..\cbase
nmake -f dos.mak "CCOM=msc" "MDL=L" all
nmake -f dos.mak "CCOM=msc" "MDL=L" combine
rem cd ..\cbddlp
rem make -f dos.mak "CCOM=msc" "MDL=L" all
cd ..\rolodeck
nmake -f dos.mak "CCOM=msc" "MDL=L" all
cd ..
@echo off
rem eof