diff --git a/Makefile b/build.mk similarity index 100% rename from Makefile rename to build.mk diff --git a/setup.py b/setup.py index c62a83598cb15d6ec7c7a643c9317905250a3e19..647bb461b3aa5f2d4a304303426696843c0237be 100755 --- a/setup.py +++ b/setup.py @@ -52,7 +52,12 @@ def build_qt(): print >>sys.stderr, 'Install missing component(s) (see above) or disable Qt applications (with --no-qt).' sys.exit(1) - subprocess.check_call([make, '-s', '-j2', 'all', 'PYUIC=%s%s' % (pyuic4, ' WIN32=1' if sys.platform == 'win32' else '')]) + subprocess.check_call( + [make, + '-f', 'build.mk', + '-s', '-j2', + 'all', + 'PYUIC=%s%s' % (pyuic4, ' WIN32=1' if sys.platform == 'win32' else '')]) class Options(object):