home *** CD-ROM | disk | FTP | other *** search
- rem
- rem Command Lines to build PLAYFILE and RECFILE
- rem
- @echo off
- if not (%debug%)==(ON) goto label05
- @echo on
- :label05
-
- if (%1)==() goto help
- if (%1)==(BCC) goto bcc
- if (%1)==(bcc) goto bcc
-
- :msc
- nmake S=S M=1 -f recfile %3 %4 %5
- nmake S=S M=1 -f playfile %3 %4 %5
-
- if (%2)==(ALL) goto msc05
- if not (%2)==(all) goto done
- :msc05
- nmake S=S M=1 -f blockin %3 %4 %5
- nmake S=S M=1 -f blockout %3 %4 %5
- nmake S=S M=1 -f fixwave %3 %4 %5
- goto done
-
- :bcc
- make S=s BCC=1 M=1 -f playfile %3 %4 %5
- make S=s BCC=1 M=1 -f recfile %3 %4 %5
-
- if (%2)==(ALL) goto bcc05
- if not (%2)==(all) goto done
- :bcc05
- make S=s BCC=1 M=1 -f blockin %3 %4 %5
- make S=s BCC=1 M=1 -f blockout %3 %4 %5
- make S=s BCC=1 M=1 -f fixwave %3 %4 %5
- goto done
-
- :help
- echo To Use: DOS\ MK [MSC or BCC] [ALL]
- echo Where: MSC specifies Microsoft C
- echo BCC specifies Borland C
- echo ALL builds all the example programs
-
- :done
-
-