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
|
# Makefile for authbind
#
# authbind is Copyright (C) 1998 Ian Jackson
#
# 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, 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.
#
# $Id: Makefile,v 1.5 1998/08/30 15:19:20 ian Exp $
prefix=/usr/local
bin_dir=$(prefix)/bin
lib_dir=$(prefix)/lib/authbind
share_dir=$(prefix)/share
man_dir=$(share_dir)/man
man1_dir=$(man_dir)/man1
man8_dir=$(man_dir)/man8
etc_dir=/etc/authbind
INSTALL_FILE=install -o root -g root -m 644
INSTALL_PROGRAM=install -o root -g root -m 755 -s
INSTALL_DIR=install -o root -g root -m 755 -d
OPTIMISE= -O2
LDFLAGS= -g
CFLAGS= -g $(OPTIMISE) \
-Wall -Wwrite-strings -Wpointer-arith -Wimplicit \
-Wnested-externs -Wmissing-prototypes -Wstrict-prototypes
CPPFLAGS= -DMAJOR_VER='"$(MAJOR)"' -DMINOR_VER='"$(MINOR)"' \
-DLIBAUTHBIND='"$(lib_dir)/$(LIBCANON)"' \
-DHELPER='"$(lib_dir)/helper"' -DCONFIGDIR='"$(etc_dir)"' \
-D_GNU_SOURCE
MAJOR=1
MINOR=0
LIBCANON= libauthbind.so.$(MAJOR)
LIBTARGET= $(LIBCANON).$(MINOR)
TARGETS= authbind helper $(LIBTARGET)
MANPAGES_1= authbind.1
MANPAGES_8= authbind-helper.8
all: $(TARGETS)
install: $(TARGETS)
$(INSTALL_DIR) $(lib_dir) $(man1_dir) $(man8_dir)
$(INSTALL_PROGRAM) authbind $(bin_dir)/.
$(INSTALL_FILE) $(LIBTARGET) $(lib_dir)/.
strip --strip-unneeded $(lib_dir)/$(LIBTARGET)
ln -sf $(LIBTARGET) $(lib_dir)/$(LIBCANON)
$(INSTALL_PROGRAM) helper $(lib_dir)/.
chmod u+s $(lib_dir)/helper
$(INSTALL_DIR) $(etc_dir) \
$(etc_dir)/byport $(etc_dir)/byaddr $(etc_dir)/byuid
install_man: $(MANPAGES_1) $(MANPAGES_8)
$(INSTALL_FILE) $(MANPAGES_1) $(man1_dir)/.
$(INSTALL_FILE) $(MANPAGES_8) $(man8_dir)/.
libauthbind.o: libauthbind.c authbind.h
$(CC) -D_REENTRANT $(CFLAGS) $(CPPFLAGS) -c -o $@ -fPIC $<
authbind: authbind.o
helper: helper.o
helper.o authbind.o: authbind.h
$(LIBTARGET): libauthbind.o
ld -shared -soname $(LIBCANON) -o $@ $< -ldl -lc
clean distclean:
rm -f $(TARGETS) *.o *~ ./#*# *.bak *.new core libauthbind.so*
|