安装 pymake 吗?
似乎没有任何关于如何构建这个傻瓜的说明。从 http://benjamin.smedbergs.us/pymake/ 下载
常用的文件不在顶部目录 - make.py 和 mkparse.py。他们似乎都没有做太多事情..似乎它需要一个makefile,但发行版的任何部分都没有..
> python make.py build
make.py[0]: Entering directory '/Users/ron/lib/pymake-default'
No makefile found
有任何提示吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
pymake 是一个make实用程序,运行
make.py
会查找Makefile
(您为自己的项目创建的)。 pymake 本身没有专门需要的构建步骤。pymake is a make utility, and running
make.py
looks for aMakefile
(that you've created, for your own project). There's no build step specifically required for pymake itself.