Path: csiph.com!usenet.pasdenom.info!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed3.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'python.': 0.02; '(at': 0.03; 'subject:Python': 0.05; 'repository': 0.05; 'converts': 0.07; 'interpreted': 0.07; 'makefile': 0.07; 'python': 0.09; 'pointers': 0.09; 'cc:addr:python-list': 0.10; 'programs.': 0.11; 'bytecode': 0.16; 'invoked.': 0.16; 'malcolm': 0.16; 'program?': 0.16; 'subject:possible': 0.16; 'wrote:': 0.17; 'code,': 0.18; 'feb': 0.19; 'email addr:gmail.com>': 0.20; 'written': 0.20; 'cc:2**0': 0.23; 'command': 0.24; 'least': 0.25; 'cc:addr:python.org': 0.25; 'header:In-Reply-To:1': 0.25; 'compiled': 0.27; 'language.': 0.27; 'message-id:@mail.gmail.com': 0.27; "doesn't": 0.28; 'received:209.85.212': 0.28; 'far,': 0.29; 'piece': 0.29; 'url:mailman': 0.29; 'source': 0.29; 'related': 0.30; 'code': 0.31; 'url:python': 0.32; 'url:listinfo': 0.32; 'received:google.com': 0.34; 'done': 0.34; 'thanks': 0.34; 'pm,': 0.35; 'subject:?': 0.35; 'received:209.85': 0.35; 'url:org': 0.36; '12,': 0.36; 'possible': 0.37; 'received:209': 0.37; 'subject:: ': 0.38; 'things': 0.38; 'apply': 0.39; 'url:mail': 0.40; 'within': 0.64; "'make'": 0.84; '2013': 0.84; 'joel': 0.91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=onsStOhCdCKKFX9udG6D5vyvKhCJR7xcRITDd1hxRt8=; b=FCNkr8Xbi5U6KzNh2m691tcvDnh4ymKD6Vfsl9UijdYxOntl7Le2Ss2aJQ1XybG0gH SG+rwVESfHzbAGpey3odJSFTW4G0LevSaE9H1cKFssrjDel8p1I/HenmMhl/9TZ2K99h yLEhuMZqz6uHdl3tjb3r2UXb13oSdY3T7L0NEjK1/mHpUzNQaagsebq29t4sWys1gQDJ eWIyYXGBL5qfM36XdnBsBT4z07suY1Un4vA5s2Nn6Ny8PvomqD2TV3k73sshxKHJCQ/I imq3uLzH15Bi3WyBAGRQ/N6A3QPl4ZVrsTUtcfkFGVO/4KTQfsm+xxBKI03Z4pODhpyU 1efA== MIME-Version: 1.0 X-Received: by 10.52.36.194 with SMTP id s2mr20390907vdj.119.1360716954855; Tue, 12 Feb 2013 16:55:54 -0800 (PST) In-Reply-To: References: Date: Tue, 12 Feb 2013 19:55:54 -0500 Subject: Re: Python Makefiles... are they possible? From: Joel Goldstick To: Malcolm White Content-Type: multipart/alternative; boundary=20cf307c9fc0bbe81104d5909a61 Cc: "python-list@python.org" X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 61 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1360716957 news.xs4all.nl 6897 [2001:888:2000:d::a6]:40656 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:38795 --20cf307c9fc0bbe81104d5909a61 Content-Type: text/plain; charset=UTF-8 On Tue, Feb 12, 2013 at 7:44 PM, Malcolm White 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 --20cf307c9fc0bbe81104d5909a61 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable



On Tue, Feb 12, 2013 at 7:44 PM, Malcolm White &l= t;white.m88@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 progr= am. 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 typical= ly) the way things are done with Python.

Thanks for any pointers in the right direction!

Python is an interpreted language.=C2=A0 The source code is 'c= ompiled' into bytecode when invoked.=C2=A0 Make is a process that conve= rts source code to compiled code, so it doesn't apply to python
--
http://mail.python.org/mailman/listinfo/python-list



--
--20cf307c9fc0bbe81104d5909a61--