~ubuntu-branches/ubuntu/hoary/mailman/hoary-security

« back to all changes in this revision

Viewing changes to Mailman/Gui/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2004-10-11 02:02:43 UTC
  • Revision ID: james.westby@ubuntu.com-20041011020243-ukiishnhlkmsoh21
Tags: upstream-2.1.5
ImportĀ upstreamĀ versionĀ 2.1.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2000-2003 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 License
 
14
# along with this program; if not, write to the Free Software 
 
15
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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
PACKAGEDIR=     $(prefix)/Mailman/Gui
 
41
SHELL=          /bin/sh
 
42
 
 
43
MODULES=        *.py
 
44
 
 
45
# Modes for directories and executables created by the install
 
46
# process.  Default to group-writable directories but
 
47
# user-only-writable for executables.
 
48
DIRMODE=        775
 
49
EXEMODE=        755
 
50
FILEMODE=       644
 
51
INSTALL_PROGRAM=$(INSTALL) -m $(EXEMODE)
 
52
 
 
53
 
 
54
# Rules
 
55
 
 
56
all:
 
57
 
 
58
install: 
 
59
        for f in $(MODULES); \
 
60
        do \
 
61
            $(INSTALL) -m $(FILEMODE) $(srcdir)/$$f $(DESTDIR)$(PACKAGEDIR); \
 
62
        done
 
63
 
 
64
finish:
 
65
 
 
66
clean:
 
67
 
 
68
distclean:
 
69
        -rm *.pyc
 
70
        -rm Makefile