1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
|
#
# $Id: Makefile.in,v 1.12.2.1 2003/05/07 11:12:29 mt Exp $
#
# Makefile (Template) for SuSE Proxy Suite -- FTP-Proxy
#
# Please do NOT edit this file if its name is just Makefile.
# Instead, edit Makefile.in and run "../configure [options]".
#
# Author(s): Jens-Gero Boehm <jens-gero.boehm@suse.de>
# Pieter Hollants <pieter.hollants@suse.de>
# Marius Tomaschewski <mt@suse.de>
# Volker Wiegand <volker.wiegand@suse.de>
#
# This file is part of the SuSE Proxy Suite
# See also http://proxy-suite.suse.de/
#
# 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.
#
# A history log can be found at the end of this file.
#
prefix= @prefix@
exec_prefix= @exec_prefix@
sysconfdir= @sysconfdir@
sbindir= @sbindir@
mandir= @mandir@
datadir= @datadir@
docdir?= $(datadir)/doc/proxy-suite
INSTALL= @INSTALL@
INSTALL_DATA= @INSTALL_DATA@
SHELL= /bin/sh
ETC_DIR= $(sysconfdir)/proxy-suite
CONF_SRC= ftp-proxy.conf.sample
CONF_DST?= ftp-proxy.conf
FTP_MAN5= ftp-proxy.conf.5
FTP_MAN8= ftp-proxy.8
DOCS= FAQ NEWS TODO SYSLOG \
rc.script.txt TransProxy-Mini-Howto.txt
TAGS= @TAGS@
CTAGS= @CTAGS@
CTAGS_OPTS= @CTAGS_OPTS@
CC= @CC@
CFLAGS= @CFLAGS@
CPPFLAGS= @CPPFLAGS@ -DETC_DIR=\"$(ETC_DIR)\"
LDFLAGS= @LDFLAGS@
LIBS= @LIB_WRAP@ @LIB_LDAP@ @LIB_CRYPT@ @LIB_REGEX@ @LIBS@
COM_LIB= ../common/libcommon.a
FTP_LIBS= -L../common -lcommon $(LIBS)
PROC_FTP= @PROC_FTP@
FTP_SRCS= ftp-client.c \
ftp-cmds.c \
ftp-daemon.c \
ftp-ldap.c \
ftp-main.c
FTP_HDRS= ftp-client.h \
ftp-cmds.h \
ftp-daemon.h \
ftp-ldap.h
FTP_OBJS= ftp-client.o \
ftp-cmds.o \
ftp-daemon.o \
ftp-ldap.o \
ftp-main.o
COM_HDRS= ../common/com-config.h \
../common/com-debug.h \
../common/com-misc.h \
../common/com-socket.h \
../common/com-syslog.h
############################################################
all: $(TAGS) progs
ifneq (,$(CTAGS))
$(TAGS): $(wildcard $(FTP_SRCS) $(FTP_HDRS) ../common/*.[ch])
$(CTAGS) $(CTAGS_OPTS) $^
@echo ""
else
$(TAGS):
endif
progs: ftp-proxy $(PROC_FTP)
ftp-proxy: $(COM_LIB) $(FTP_OBJS)
rm -f $@
$(CC) -o $@ $(LDFLAGS) $(FTP_OBJS) $(FTP_LIBS)
$(COM_LIB):
cd ../common && $(MAKE)
############################################################
ftp-client.o: ftp-client.c $(COM_HDRS) $(FTP_HDRS)
ftp-cmds.o: ftp-cmds.c $(COM_HDRS) $(FTP_HDRS)
ftp-daemon.o: ftp-daemon.c $(COM_HDRS) $(FTP_HDRS)
ftp-ldap.o: ftp-ldap.c $(COM_HDRS) $(FTP_HDRS)
ftp-main.o: ftp-main.c $(COM_HDRS) $(FTP_HDRS) ftp-vers.c
ftp-vers.c: ../changelog
@cd .. && $(SHELL) changelog
proc_ftp.o: proc_ftp.c
$(CC) -g -O2 -c -I. -I.. $<
.c.o:
$(CC) $(CFLAGS) $(CPPFLAGS) -c -I. -I.. -I../common $<
############################################################
install: progs $(CONF_SRC) $(FTP_MAN5) $(FTP_MAN8)
$(INSTALL) -d $(INST_ROOT)$(sbindir)
$(INSTALL) -s ftp-proxy $(INST_ROOT)$(sbindir)
$(INSTALL) -d $(INST_ROOT)$(ETC_DIR)
@if test -f $(INST_ROOT)$(ETC_DIR)/$(CONF_DST) ; then \
echo "$(INST_ROOT)$(ETC_DIR)/$(CONF_DST) exists; file not touched"; \
else \
echo "installing $(CONF_SRC)"; \
echo " to $(INST_ROOT)$(ETC_DIR)/$(CONF_DST); *please edit*"; \
$(INSTALL_DATA) $(CONF_SRC) $(INST_ROOT)$(ETC_DIR)/$(CONF_DST); \
fi
$(INSTALL) -d $(INST_ROOT)$(mandir)/man5
@for file in $(FTP_MAN5) ; do \
echo "installing manual page $$file"; \
$(INSTALL_DATA) $$file $(INST_ROOT)$(mandir)/man5; \
done
$(INSTALL) -d $(INST_ROOT)$(mandir)/man8
@for file in $(FTP_MAN8) ; do \
echo "installing manual page $$file"; \
$(INSTALL_DATA) $$file $(INST_ROOT)$(mandir)/man8; \
done
install.doc:
$(INSTALL) -d $(INST_ROOT)$(docdir)
$(INSTALL_DATA) $(DOCS) $(INST_ROOT)$(docdir)
############################################################
clean:
rm -f *.o *.a *~ tags core ftp-proxy ftp-vers.c
distclean: clean
rm -f Makefile rc.script
rm -f $(FTP_MAN5) $(FTP_MAN8)
realclean: distclean
############################################################
# $Log: Makefile.in,v $
# Revision 1.12.2.1 2003/05/07 11:12:29 mt
# added CPPFLAGS variable
#
# Revision 1.12 2002/05/02 13:06:37 mt
# merged with v1.8.2.2, added crypt-lib
#
# Revision 1.11.2.1 2002/01/27 21:20:38 mt
# fixed Makefiles to use INST_ROOT, added install.doc targets
#
# Revision 1.11 2002/01/14 18:57:25 mt
# fixed ctags handling - it needs to be enabled by configure;
# changed ftp-proxy.conf handling ('CONF_DST="" make install')
# to support BSD $ETC_DIR/ftp-proxy.conf.sample installation
#
# Revision 1.10 2001/11/06 23:04:43 mt
# applied / merged with transparent proxy patches v8
# see ftp-proxy/NEWS for more detailed release news
#
# Revision 1.9 1999/10/19 11:19:03 wiegand
# added -static as option for GCC
#
# Revision 1.8 1999/09/27 04:20:34 wiegand
# include . and .. directories in proc_ftp.c -I
#
# Revision 1.7 1999/09/26 13:36:36 wiegand
# removed warnings for proc_ftp compilation
#
# Revision 1.6 1999/09/24 19:32:55 wiegand
# moved the changelog to the top level directory
#
# Revision 1.5 1999/09/24 06:40:48 wiegand
# rearranged to improve consistency with other makefiles
#
# Revision 1.4 1999/09/20 05:20:30 wiegand
# added the installation section
#
# Revision 1.3 1999/09/17 16:32:29 wiegand
# changes from source code review
# added POSIX regular expressions
#
# Revision 1.2 1999/09/16 16:29:57 wiegand
# minor updates improving code quality
#
# Revision 1.1 1999/09/15 14:06:22 wiegand
# initial checkin
#
############################################################
|