A4

Merge lp:~andrea.corbellini/a4/makefile into lp:a4

Proposed by Andrea Corbellini
Status: Merged
Merged at revision: 13
Proposed branch: lp:~andrea.corbellini/a4/makefile
Merge into: lp:a4
Diff against target: 9 lines (+5/-0)
1 file modified
Makefile (+5/-0)
To merge this branch: bzr merge lp:~andrea.corbellini/a4/makefile
Reviewer Review Type Date Requested Status
Andrea Gasparini Approve
Review via email: mp+26964@code.launchpad.net

Description of the change

Add a simple make file. Currently, it doesn't do anything special, but it'll be expanded soon at some point.

To post a comment you must log in.
Revision history for this message
Andrea Gasparini (gaspa) wrote :

I'd rather use setuptools. I'm not really used to them, but I recall they support something similar to "setup.py clean".
Opinions? Do someone know a little of setuptools/distutils?

Revision history for this message
Andrea Corbellini (andrea.corbellini) wrote :

The 'clean' command provided by setuptools/distutils just removes the 'build' and 'dist' directories, it doesn't remove the bytecodes nor the hidden backup files.

Revision history for this message
Andrea Gasparini (gaspa) wrote :

ok, I see.
Anyway we can merge any setup.py/Makefile in the future.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== added file 'Makefile'
2--- Makefile 1970-01-01 00:00:00 +0000
3+++ Makefile 2010-06-07 15:53:22 +0000
4@@ -0,0 +1,5 @@
5+# Copyright 2010 A4 Developers. This software is licensed under the
6+# GNU General Public License version 3 (see the file COPYING).
7+
8+clean:
9+ find . -name "*.pyc" -o -name "*.pyo" -o -name "*~" | xargs rm -f

Subscribers

People subscribed via source and target branches