mirror of
https://github.com/holub/mame
synced 2025-05-20 20:58:51 +03:00
makedep now ignores "-include" which is used by sdlmame to include sdlprefix.h before all other includes. [Couriersud]
This commit is contained in:
parent
1719abcdbb
commit
b4d803c875
@ -187,6 +187,12 @@ int main(int argc, char *argv[])
|
||||
}
|
||||
}
|
||||
|
||||
/* ignore -include which is used by sdlmame to include sdlprefix.h before all other includes */
|
||||
else if (strcmp(arg,"-include") == 0)
|
||||
{
|
||||
argnum++;
|
||||
}
|
||||
|
||||
/* other parameter */
|
||||
else if (arg[0] != '-' && unadorned == 0)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user