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

@ -138,6 +138,11 @@ int main(int argc, char *argv[])
(*excpathhead)->pathlen = (*excpathhead)->path.len();
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)