Hacker News new | ask | show | jobs
by mtdewcmu 4671 days ago
Is there a configure script or cmake or something? It looks like you might have to do something before `make all`
1 comments

Nope, just a top level makefile and a readme that says to compile you only need to

    make all
make looks for [Mm]akefile if you run it with no arguments, but here it's being run recursively (or included). On OSX, filenames are case-insensitive, which could be a possible reason why it works for some people. On Linux, filenames are case sensitive.
That seems to be the case, since running file on one of the existing .o files says that they are Mach-O i386 objects. The readme doesn't mention OS X though, only Ubuntu