Python Makefiles... are they possible?

Joel Goldstick joel.goldstick at gmail.com
Tue Feb 12 19:55:54 EST 2013


On Tue, Feb 12, 2013 at 7:44 PM, Malcolm White <white.m88 at gmail.com> wrote:

> I have written a piece of code that will be part of a larger repository of
> related programs. Within this repository, it is standard to issue a 'make'
> command to compile any desired program. Is it possible to create a Makefile
> to compile a simple Python program? Based on what I have come across so
> far, this is not (at least not typically) the way things are done with
> Python.
>
> Thanks for any pointers in the right direction!
>

Python is an interpreted language.  The source code is 'compiled' into
bytecode when invoked.  Make is a process that converts source code to
compiled code, so it doesn't apply to python

> --
> http://mail.python.org/mailman/listinfo/python-list
>



-- 
Joel Goldstick
http://joelgoldstick.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-list/attachments/20130212/ab644e14/attachment.html>


More information about the Python-list mailing list