source: trunk/src/Makefile @ 1210

Revision 1210, 1.4 KB checked in by anarcat, 8 years ago (diff)

ajout de wrappers pour inscrire/d�sinscrire des usagers aux listes

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1#
2# $Id$
3# ----------------------------------------------------------------------
4# AlternC - Web Hosting System
5# Copyright (C) 2002 by the AlternC Development Team.
6# http://alternc.org/
7# ----------------------------------------------------------------------
8# Based on:
9# Valentin Lacambre's web hosting softwares: http://altern.org/
10# ----------------------------------------------------------------------
11# LICENSE
12#
13# This program is free software; you can redistribute it and/or
14# modify it under the terms of the GNU General Public License (GPL)
15# as published by the Free Software Foundation; either version 2
16# of the License, or (at your option) any later version.
17#
18# This program is distributed in the hope that it will be useful,
19# but WITHOUT ANY WARRANTY; without even the implied warranty of
20# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21# GNU General Public License for more details.
22#
23# To read the license please visit http://www.gnu.org/copyleft/gpl.html
24# ----------------------------------------------------------------------
25# Purpose of file: Makefile for alternc-mailman
26# ----------------------------------------------------------------------
27#
28CC=gcc
29PROGS=mailman.create mailman.delete mailman.list mailman.sub mailman.unsub
30
31all: ${PROGS}
32
33%: %.c
34        $(CC) $< -o $@
35
36clean:
37        rm -f *.o core *~ ${PROGS}
38
39install:
40        chown list.list ${PROGS}
41        chmod u+s ${PROGS}
42
43
44
45
Note: See TracBrowser for help on using the repository browser.