home *** CD-ROM | disk | FTP | other *** search
- @echo off
- set lib_=tlib
- set asm_=tasm
- set cc_=tcc
- make -DMDL=t -DTYPE=t
- del *.obj >nul
- make -DMDL=s -DTYPE=t
- del *.obj >nul
- make -DMDL=c -DTYPE=t
- del *.obj >nul
- make -DMDL=m -DTYPE=t
- del *.obj >nul
- make -DMDL=l -DTYPE=t
- del *.obj >nul
- make -DMDL=h -DTYPE=t
- del *.obj >nul
- del spawn?.bak >nul
- set lib_=
- rem
- rem Now build the object modules needed for the alternate version of the
- rem library
- rem
- %asm_% /Q /mx /D__TINY__ /D__MSC__ /Zi spawnerr,spwnerrt
- %asm_% /Q /mx /D__SMALL__ /D__MSC__ /Zi spawnerr,spwnerrs
- %asm_% /Q /mx /D__COMPACT__ /D__MSC__ /Zi spawnerr,spwnerrc
- %asm_% /Q /mx /D__MEDIUM__ /D__MSC__ /Zi spawnerr,spwnerrm
- %asm_% /Q /mx /D__LARGE__ /D__MSC__ /Zi spawnerr,spwnerrl
- %asm_% /Q /mx /D__HUGE__ /D__MSC__ /Zi spawnerr,spwnerrh
-
- %cc_% -mt -O -G -Z -1- -c -D__MSC__ -osystem_t system
- %cc_% -ms -O -G -Z -1- -c -D__MSC__ -osystem_s system
- %cc_% -mc -O -G -Z -1- -c -D__MSC__ -osystem_c system
- %cc_% -mm -O -G -Z -1- -c -D__MSC__ -osystem_m system
- %cc_% -ml -O -G -Z -1- -c -D__MSC__ -osystem_l system
- %cc_% -mh -O -G -Z -1- -c -D__MSC__ -osystem_h system
- set cc_=
- set asm_=
-