~sambuddhabasu1/mailman/fix_mailman_run_error

« back to all changes in this revision

Viewing changes to tests/msgs/Makefile.in

  • Committer: Barry Warsaw
  • Date: 2007-07-21 20:19:54 UTC
  • mfrom: (6530.1.10 setup)
  • Revision ID: barry@python.org-20070721201954-18wbxbgil0psoijo
Merge the setuptools branch.  Fix a couple of test modules that are
disabled anyway.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2001-2007 by the Free Software Foundation, Inc.
2
 
#
3
 
# This program is free software; you can redistribute it and/or
4
 
# modify it under the terms of the GNU General Public License
5
 
# as published by the Free Software Foundation; either version 2
6
 
# of the License, or (at your option) any later version.
7
 
8
 
# This program is distributed in the hope that it will be useful,
9
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
 
# GNU General Public License for more details.
12
 
13
 
# You should have received a copy of the GNU General Public Licenseo
14
 
# along with this program; if not, write to the Free Software 
15
 
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16
 
 
17
 
# NOTE: Makefile.in is converted into Makefile by the configure script
18
 
# in the parent directory.  Once configure has run, you can recreate
19
 
# the Makefile by running just config.status.
20
 
 
21
 
# Variables set by configure
22
 
 
23
 
VPATH=          @srcdir@
24
 
srcdir=         @srcdir@
25
 
bindir=         @bindir@
26
 
prefix=         @prefix@
27
 
exec_prefix=    @exec_prefix@
28
 
DESTDIR=
29
 
 
30
 
CC=             @CC@
31
 
CHMOD=          @CHMOD@
32
 
INSTALL=        @INSTALL@
33
 
 
34
 
DEFS=           @DEFS@
35
 
 
36
 
# Customizable but not set by configure
37
 
 
38
 
OPT=            @OPT@
39
 
CFLAGS=         $(OPT) $(DEFS)
40
 
MSGSDIR=        $(prefix)/tests/msgs
41
 
SHELL=          /bin/sh
42
 
 
43
 
MSG_FILES=      $(srcdir)/*.txt
44
 
 
45
 
 
46
 
# Modes for directories and executables created by the install
47
 
# process.  Default to group-writable directories but
48
 
# user-only-writable for executables.
49
 
DIRMODE=        775
50
 
EXEMODE=        755
51
 
FILEMODE=       644
52
 
INSTALL_PROGRAM=$(INSTALL) -m $(EXEMODE)
53
 
 
54
 
# Rules
55
 
all:
56
 
 
57
 
install:
58
 
        for f in $(MSG_FILES); \
59
 
        do \
60
 
            $(INSTALL) -m $(FILEMODE) $$f $(DESTDIR)$(MSGSDIR); \
61
 
        done
62
 
 
63
 
finish:
64
 
 
65
 
clean:
66
 
 
67
 
distclean:
68
 
        -rm *.pyc
69
 
        -rm Makefile