chiark / gitweb /
copyright
[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 libexec_dir=$(lib_dir)
26
27 share_dir=$(prefix)/share
28 man_dir=$(share_dir)/man
29 man1_dir=$(man_dir)/man1
30 man8_dir=$(man_dir)/man8
31
32 etc_dir=/etc/authbind
33
34 INSTALL_FILE    ?= install -o root -g root -m 644 
35 INSTALL_PROGRAM ?= install -o root -g root -m 755 -s
36 INSTALL_DIR     ?= install -o root -g root -m 755 -d
37 STRIP           ?= strip
38
39 OPTIMISE=       -O2
40 LDFLAGS=        -g
41 LIBS=           -ldl -lc
42 CFLAGS=         -g $(OPTIMISE) \
43                 -Wall -Wwrite-strings -Wpointer-arith -Wimplicit \
44                 -Wnested-externs -Wmissing-prototypes -Wstrict-prototypes
45 CPPFLAGS=       -DMAJOR_VER='"$(MAJOR)"' -DMINOR_VER='"$(MINOR)"' \
46                 -DLIBAUTHBIND='"$(lib_dir)/$(LIBCANON)"' \
47                 -DHELPER='"$(libexec_dir)/$(HELPER)"' -DCONFIGDIR='"$(etc_dir)"' \
48                 -D_GNU_SOURCE
49
50 MAJOR=1
51 MINOR=0
52 LIBCANON=       libauthbind.so.$(MAJOR)
53 LIBTARGET=      $(LIBCANON).$(MINOR)
54 BINTARGETS=     authbind
55 HELPER=         helper
56
57 TARGETS=                $(BINTARGETS) $(HELPER) $(LIBTARGET)
58 MANPAGES_1=             authbind.1
59 MANPAGES_8=             authbind-helper.8
60
61 all:                    $(TARGETS)
62
63 install:                $(TARGETS)
64                 $(INSTALL_DIR) $(lib_dir) $(man1_dir) $(man8_dir)
65                 $(INSTALL_PROGRAM) $(BINTARGETS) $(bin_dir)/.
66                 $(INSTALL_FILE) $(LIBTARGET) $(lib_dir)/.
67                 $(STRIP) --strip-unneeded $(lib_dir)/$(LIBTARGET)
68                 ln -sf $(LIBTARGET) $(lib_dir)/$(LIBCANON)
69                 $(INSTALL_PROGRAM) $(HELPER) $(libexec_dir)/.
70                 chmod u+s $(libexec_dir)/$(HELPER)
71                 $(INSTALL_DIR) $(etc_dir) \
72                         $(etc_dir)/byport $(etc_dir)/byaddr $(etc_dir)/byuid
73
74 install_man:            $(MANPAGES_1) $(MANPAGES_8)
75                 $(INSTALL_FILE) $(MANPAGES_1) $(man1_dir)/.
76                 $(INSTALL_FILE) $(MANPAGES_8) $(man8_dir)/.
77
78 libauthbind.o:          libauthbind.c authbind.h
79                 $(CC) -D_REENTRANT $(CFLAGS) $(CPPFLAGS) -c -o $@ -fPIC $<
80
81 authbind:               authbind.o
82 helper:                 helper.o
83
84 helper.o authbind.o:    authbind.h
85
86 $(LIBTARGET):           libauthbind.o
87                 ld -shared -soname $(LIBCANON) -o $@ $< $(LIBS)
88
89 clean distclean:
90                 rm -f $(TARGETS) *.o *~ ./#*# *.bak *.new core
91                 rm -f libauthbind.so* *.core