Vastly overhauled Makefile heirarchy to conform to GNU automake/autoconf
technique. svn: r1063
This commit is contained in:
29
py-compile
29
py-compile
@ -1,6 +1,35 @@
|
||||
#!/bin/sh
|
||||
|
||||
# py-compile - Compile a Python program
|
||||
# Copyright 2000, 2001 Free Software Foundation, Inc.
|
||||
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2, or (at your option)
|
||||
# any later version.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||
# 02111-1307, USA.
|
||||
|
||||
# As a special exception to the GNU General Public License, if you
|
||||
# distribute this file as part of a program that contains a
|
||||
# configuration script generated by Autoconf, you may include it under
|
||||
# the same distribution terms that you use for the rest of that program.
|
||||
|
||||
# called as "py-compile [--basedir DIR] PY_FILES ...
|
||||
|
||||
# GRAMPS-SPECIFIC COMMENTS:
|
||||
# This is a modified version of the py-compile script distributed with
|
||||
# GNU automake 1.6. The only difference is that this file has had the
|
||||
# normal byte-compiling section removed since Gramps only uses optimized
|
||||
# versions of byte-compiled code.
|
||||
if [ -z "$PYTHON" ]; then
|
||||
PYTHON=python
|
||||
fi
|
||||
|
Reference in New Issue
Block a user