Fixed make depend on OS X. (nw)

This commit is contained in:
Curt Coder 2013-11-13 20:40:52 +00:00
parent 556913dc4d
commit f329b77e35

View File

@ -139,6 +139,11 @@ int main(int argc, char *argv[])
excpathhead = &(*excpathhead)->next;
}
else if (arg[0] == '-' && arg[1] == 'F')
{
argnum++;
}
// ignore -include which is used by sdlmame to include sdlprefix.h before all other includes
else if (strcmp(arg,"-include") == 0)
{