mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 13:01:40 +00:00
- Replaced the target extension with '.h.gch' if the source extension was '.h'
svn path=/trunk/; revision=10795
This commit is contained in:
parent
78d5c83574
commit
ff08835fad
1 changed files with 44 additions and 3 deletions
|
@ -5,9 +5,11 @@
|
||||||
int main(int argc, char* argv[])
|
int main(int argc, char* argv[])
|
||||||
{
|
{
|
||||||
char buf[512];
|
char buf[512];
|
||||||
|
char buf2[512];
|
||||||
char ch;
|
char ch;
|
||||||
unsigned int i;
|
unsigned int i, j;
|
||||||
char* dot;
|
char* dot;
|
||||||
|
char* ext;
|
||||||
char* prefix;
|
char* prefix;
|
||||||
FILE* out;
|
FILE* out;
|
||||||
|
|
||||||
|
@ -50,14 +52,53 @@ int main(int argc, char* argv[])
|
||||||
{
|
{
|
||||||
return(0);
|
return(0);
|
||||||
}
|
}
|
||||||
|
i = 0;
|
||||||
|
while ((ch = fgetc(stdin)) == ' ' && ch != EOF)
|
||||||
|
{
|
||||||
|
buf2[i] = ch;
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
if (i == 0)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
if (ch != EOF)
|
||||||
|
{
|
||||||
|
buf2[i] = ch;
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
j = i;
|
||||||
|
while ((ch = fgetc(stdin)) != ' ' && ch != EOF)
|
||||||
|
{
|
||||||
|
buf2[j] = ch;
|
||||||
|
j++;
|
||||||
|
}
|
||||||
|
buf2[j] = 0;
|
||||||
|
if (i == j)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
ext = strrchr(buf2, '.');
|
||||||
|
if (ext != NULL)
|
||||||
|
{
|
||||||
|
if (0 == strcmp(ext, ".h"))
|
||||||
|
{
|
||||||
|
ext = "h.gch";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
ext = NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
dot = strrchr(buf, '.');
|
dot = strrchr(buf, '.');
|
||||||
if (dot != NULL)
|
if (dot != NULL)
|
||||||
{
|
{
|
||||||
*dot = 0;
|
*dot = 0;
|
||||||
}
|
}
|
||||||
fprintf(out, "%s/.%s.TAG %s/.%s.d %s/%s.o:", prefix, buf, prefix, buf,
|
fprintf(out, "%s/.%s.TAG %s/.%s.d %s/%s.%s:%s ", prefix, buf, prefix, buf,
|
||||||
prefix,buf);
|
prefix,buf,ext ? ext : "o" , buf2);
|
||||||
|
|
||||||
while ((ch = fgetc(stdin)) != EOF)
|
while ((ch = fgetc(stdin)) != EOF)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue