Reputation: 1779
There dont seem to be any instructions on how to build this sucker. Downloaded from http://benjamin.smedbergs.us/pymake/
The usual files are not in the top directory - make.py and mkparse.py. neither of them seem to do much.. seems like it needs a makefile, but there isn't one in any part of the distro..
> python make.py build
make.py[0]: Entering directory '/Users/ron/lib/pymake-default'
No makefile found
any hints?
Upvotes: 2
Views: 1208
Reputation: 993393
pymake is a make utility, and running make.py
looks for a Makefile
(that you've created, for your own project). There's no build step specifically required for pymake itself.
Upvotes: 3