chiark / gitweb /
cd9e8780244570ef9320ebb978ca746eb6cadd7a
[authbind.git] / Makefile
1 # Makefile for authbind
2
3 # authbind is Copyright (C) 1998 Ian Jackson
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2, or (at your option)
8 # any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software Foundation,
17 # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 
18 #
19 # $Id$
20
21 prefix=/usr/local
22
23 bin_dir=$(prefix)/bin
24 lib_dir=$(prefix)/lib/authbind
25
26 share_dir=$(prefix)/share
27 man_dir=$(share_dir)/man
28 man1_dir=$(man_dir)/man1
29 man8_dir=$(man_dir)/man8
30
31 etc_dir=/etc/authbind
32
33 OPTIMISE=       -O2
34 CFLAGS=         -g $(OPTIMISE) \
35                 -Wall -Wwrite-strings -Wpointer-arith -Wimplicit \
36                 -Wnested-externs -Wmissing-prototypes -Wstrict-prototypes
37 CPPFLAGS=       -DMAJOR_VER='"$(MAJOR)"' -DMINOR_VER='"$(MINOR)"' \
38                 -DLIBAUTHBIND='"$(lib_dir)/$(LIBCANON)"' \
39                 -DHELPER='"$(lib_dir)/helper"' -DCONFIGDIR='"$(etc_dir)"'
40
41 MAJOR=1
42 MINOR=0
43 LIBCANON=       libauthbind.so.$(MAJOR)
44 LIBTARGET=      $(LIBCANON).$(MINOR)
45
46 TARGETS=                authbind helper $(LIBTARGET)
47 MANPAGES_1=             authbind.1
48 MANPAGES_8=             authbind-helper.8
49
50 all:                    $(TARGETS)
51
52 install:                $(TARGETS)
53                 install -o root -g root -m 755 -d $(lib_dir) $(man1_dir) $(man8_dir)
54                 install -o root -g root -m 755 -s authbind $(bin_dir)/.
55                 install -o root -g root -m 755 $(LIBTARGET) $(lib_dir)/.
56                 strip --strip-unneeded $(lib_dir)/$(LIBTARGET)
57                 ln -s $(LIBTARGET) $(lib_dir)/$(LIBCANON)
58                 install -o root -g root -m 4755 -s helper $(lib_dir)/.
59                 install -o root -g root -m 755 -d $(etc_dir) \
60                         $(etc_dir)/byport $(etc_dir)/byaddr $(etc_dir)/byuid
61
62 install_man:            $(MANPAGES_1) $(MANPAGES_8)
63                 install -o root -g root -m 644 $(MANPAGES_1) $(man1_dir)/.
64                 install -o root -g root -m 644 $(MANPAGES_8) $(man8_dir)/.
65
66 libauthbind.o:          libauthbind.c
67                 $(CC) -D_REENTRANT $(CFLAGS) $(CPPFLAGS) -c -o $@ -fPIC $<
68
69 $(LIBTARGET):           libauthbind.o
70                 gcc -g -shared -Wl,-soname,$(LIBCANON) -o $@ $< -ldl -lc
71
72 clean distclean:
73                 rm -f $(TARGETS) *.o *~ ./#*# *.bak *.new core libauthbind.so*