home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
gnat-2.06-src.tgz
/
tar.out
/
fsf
/
gnat
/
ada
/
gnatchop.bat
< prev
next >
Wrap
DOS Batch File
|
1996-09-28
|
2KB
|
46 lines
@echo off
if %1.==. goto usage
REM setlocal
set parms=
set k8option=
goto get_opt1
:GET_OPTS
shift
:GET_OPT1
REM Scan through the options, checking for validity and especially looking for
REM the 'k' option since this will be used for the call to gcc to get the offset
REM information.
if %1.==-k. set k8option=-k8
if %1.==-k. goto get_opts
if %1.==-s. set parms=%parms% %1
if %1.==-s. goto get_opts
if %1.==-w. set parms=%parms% %1
if %1.==-w. goto get_opts
REM Check that there is a filename argument after the option list, and that the
REM file actually exists.
if %1.==. echo missing filename
if %1.==. goto usage
if not exist %1 echo %1 not found
if not exist %1 goto end
REM Call gnatf on the source filename argument with special options to generate
REM offset information. If this special compilation completes succesfully call
REM the gnatchop program to actually split the source file in one file per
REM compilation unit in the optional directory if given otherwise in the current
REM directory.
gnatf -s -u %k8option% %1 >tmpfile
if errorlevel 1 echo parse errors detected
if errorlevel 1 erase tmpfile
if errorlevel 1 goto end
gnatchp %parms% %1 %2 <tmpfile
erase tmpfile
goto end
:USAGE
echo Usage : gnatchop [-k] [-s] [-w] filename [directory]
echo.
echo k limit filenames to 8 characters
echo s generate a compilation script
echo w overwrite existing filenames
echo filename source file
echo directory directory to place split files (default is the current directory)
:END