autodep.c
来自「开放源码的编译器open watcom 1.6.0版的源代码」· C语言 代码 · 共 129 行
C
129 行
/****************************************************************************
*
* Open Watcom Project
*
* Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
*
* ========================================================================
*
* This file contains Original Code and/or Modifications of Original
* Code as defined in and that are subject to the Sybase Open Watcom
* Public License version 1.0 (the 'License'). You may not use this file
* except in compliance with the License. BY USING THIS FILE YOU AGREE TO
* ALL TERMS AND CONDITIONS OF THE LICENSE. A copy of the License is
* provided with the Original Code and Modifications, and is also
* available at www.sybase.com/developer/opensource.
*
* The Original Code and all software distributed under the License are
* distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
* EXPRESS OR IMPLIED, AND SYBASE AND ALL CONTRIBUTORS HEREBY DISCLAIM
* ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR
* NON-INFRINGEMENT. Please see the License for the specific language
* governing rights and limitations under the License.
*
* ========================================================================
*
* Description: Generates makefile style auto dependancy files. Default
* output name will be based from source file name with the extension
* '.d'. Target name may be overridden.
* AdClose() has an option to erase when closing (supposed to delete
* when there was an error which aborted compilation...
*
****************************************************************************/
#include "plusplus.h"
#include <stdio.h>
#include "memmgr.h"
#include "iosupp.h"
#include "srcfile.h"
#include "cgdata.h"
//#include "hfile.h"
static FILE *AutoDepFile;
// macro copied from bld/cc/c/ccmain.c
#if defined(__QNX__) || defined(__LINUX__)
#define IS_PATH_SEP( ch ) ((ch) == '/')
#else
#define IS_PATH_SEP( ch ) ((ch) == '/' || (ch) == '\\')
#endif
char *DoForceSlash( char *name, char slash )
{
char *save = name;
if( !slash || !save )
return name;
while( name[0] )
{
if( IS_PATH_SEP( name[0] ) )
name[0] = slash;
name++;
}
return save;
}
void AdDump( void )
{
if( AutoDepFile )
{
SRCFILE retn;
int hadone;
fprintf( AutoDepFile, "%s : "
, DoForceSlash( IoSuppOutFileName( OFT_TRG )
, ForceSlash ) );
fprintf( AutoDepFile, "%s"
, DoForceSlash( IoSuppOutFileName( OFT_SRCDEP )
, ForceSlash ) );
for( retn = SrcFileWalkInit(), retn?(hadone=1):(hadone=0);
hadone;
((retn = SrcFileWalkNext( retn )),retn?(hadone=1):(hadone=0) ),
(retn = SrcFileNotReadOnly( retn ) ) )
{
char *name;
if( IsSrcFilePrimary( retn ) )
continue;
name = SrcFileName(retn);
if( DependHeaderPath )
{
char *p = name;
while( p && p[0] )
if( IS_PATH_SEP( *p ) )
break;
else p++;
fprintf( AutoDepFile, " %s%s"
, (p && p[0])?"":DependHeaderPath
, DoForceSlash( name
, ForceSlash ) );
}
else
{
fprintf( AutoDepFile, " %s"
, DoForceSlash( name
, ForceSlash ) );
}
}
}
}
void AdOpen( void )
{
AutoDepFile = fopen( IoSuppOutFileName( OFT_DEP ), "wt" );
}
void AdClose( int and_erase )
{
// for now fake out doing anything....
//and_erase = TRUE;
if( AutoDepFile )
{
fclose( AutoDepFile );
AutoDepFile = NULL;
}
if( and_erase )
remove( IoSuppOutFileName( OFT_DEP ) );
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?