diff options
| author | bwarsaw | 1998-05-26 18:26:15 +0000 |
|---|---|---|
| committer | bwarsaw | 1998-05-26 18:26:15 +0000 |
| commit | a38041fa64fb30b661a9a55a6c9a3c313ba453a4 (patch) | |
| tree | a06701e41494d665b17f840790136c7020961a67 | |
| parent | b630ef6bf897c2c3f7f808f075c02eef1f3ed127 (diff) | |
| download | mailman-a38041fa64fb30b661a9a55a6c9a3c313ba453a4.tar.gz mailman-a38041fa64fb30b661a9a55a6c9a3c313ba453a4.tar.zst mailman-a38041fa64fb30b661a9a55a6c9a3c313ba453a4.zip | |
Makefile is no longer necessary, since it will be generated by the
configure script from the new Makefile.in file.
| -rw-r--r-- | src/Makefile | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/src/Makefile b/src/Makefile deleted file mode 100644 index 2ea6a4d7f..000000000 --- a/src/Makefile +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright (C) 1998 by the 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 -# of the License, 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. - - -HOME=/home/mailman -CGI=${HOME}/cgi-bin -MAILMAN=${HOME}/mailman - - -all: admin_wrapper admindb_wrapper archives_wrapper edithtml_wrapper options_wrapper listinfo_wrapper subscribe_wrapper roster_wrapper handle_opts_wrapper mail_wrapper alias_wrapper private_wrapper - -admin_wrapper: - gcc -D SCRIPT="\"admin\"" -o ${CGI}/admin cgi-wrapper.c - chmod a+sx ${CGI}/admin - -admindb_wrapper: - gcc -D SCRIPT="\"admindb\"" -o ${CGI}/admindb cgi-wrapper.c - chmod a+sx ${CGI}/admindb - -archives_wrapper: - gcc -D SCRIPT="\"archives\"" -o ${CGI}/archives cgi-wrapper.c - chmod a+sx ${CGI}/archives - -edithtml_wrapper: - gcc -D SCRIPT="\"edithtml\"" -o ${CGI}/edithtml cgi-wrapper.c - chmod a+sx ${CGI}/edithtml - -options_wrapper: - gcc -D SCRIPT="\"options\"" -o ${CGI}/options cgi-wrapper.c - chmod a+sx ${CGI}/options - -listinfo_wrapper: - gcc -D SCRIPT="\"listinfo\"" -o ${CGI}/listinfo cgi-wrapper.c - chmod a+sx ${CGI}/listinfo - -subscribe_wrapper: - gcc -D SCRIPT="\"subscribe\"" -o ${CGI}/subscribe cgi-wrapper.c - chmod a+sx ${CGI}/subscribe - -roster_wrapper: - gcc -D SCRIPT="\"roster\"" -o ${CGI}/roster cgi-wrapper.c - chmod a+sx ${CGI}/roster - -handle_opts_wrapper: - gcc -D SCRIPT="\"handle_opts\"" -o ${CGI}/handle_opts cgi-wrapper.c - chmod a+sx ${CGI}/handle_opts - -private_wrapper: - gcc -D SCRIPT="\"private\"" -o ${CGI}/private cgi-wrapper.c - chmod a+sx ${CGI}/private - -mail_wrapper: - gcc -o ${MAILMAN}/mail/wrapper mail-wrapper.c - chmod a+sx ${MAILMAN}/mail/wrapper - -alias_wrapper: - gcc -o ${MAILMAN}/bin/addaliases alias-wrapper.c - chmod a+sx ${MAILMAN}/bin/addaliases |
