"Fossies" - the Fresh Open Source Software Archive

Member "mapm_4.9.5a/WINDOWS_DOS/mkalllcc.bat" (21 Feb 2010, 581 Bytes) of package /linux/misc/old/mapm-4.9.5a.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) MS DOS Batch source code syntax highlighting (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 rem *
    2 rem *
    3 rem *   Build file for LCC-WIN32  (Ver 3.2)
    4 rem *   builds library and 3 demo executables
    5 rem *
    6 rem *
    7 del mapm.lib
    8 del mapm*.obj
    9 rem *
   10 rem *   build the library 'mapm.lib'
   11 rem *
   12 lc -c -O mapm*.c
   13 rem *
   14 lcclib /out:mapm.lib mapm*.obj
   15 del mapm*.obj
   16 rem *
   17 rem *
   18 rem *   now build the demo programs
   19 rem *
   20 lc -c -O validate.c
   21 lcclnk -s -o validate.exe validate.obj mapm.lib
   22 del validate.obj
   23 rem *
   24 rem *
   25 lc -c -O calc.c
   26 lcclnk -s -o calc.exe calc.obj mapm.lib
   27 del calc.obj
   28 rem *
   29 rem *
   30 lc -c -O primenum.c
   31 lcclnk -s -o primenum.exe primenum.obj mapm.lib
   32 del primenum.obj
   33 rem *