~ubuntu-branches/ubuntu/feisty/freeradius/feisty-security

« back to all changes in this revision

Viewing changes to src/modules/rlm_dbm/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2006-12-16 20:45:11 UTC
  • mfrom: (3.1.10 feisty)
  • Revision ID: james.westby@ubuntu.com-20061216204511-3pbbsu4s8jtehsor
Tags: 1.1.3-3
Fix POSIX compliance problem in init script.  Closes: #403384. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# $Id: Makefile.in,v 1.4.8.1.2.1 2006/02/10 19:48:04 nbk Exp $
 
3
#
 
4
 
1
5
TARGET      = @targetname@
2
6
SRCS        = rlm_dbm.c
3
7
HEADERS     =
8
12
 
9
13
include ../rules.mak
10
14
 
11
 
rlm_dbm_parser: rlm_dbm_parser.o ../../lib/libradius.a
12
 
        $(LIBTOOL) --mode=link $(CC) $^ $(LIBS) $(RLM_LIBS) -o $@
 
15
rlm_dbm_parser: rlm_dbm_parser.lo ../../lib/libradius.la
 
16
        $(LIBTOOL) --mode=link $(CC) $(LDFLAGS) $(RLM_LDFLAGS) \
 
17
                -o $@ $^ $(RLM_LIBS) $(LIBS)
13
18
 
14
 
rlm_dbm_cat: rlm_dbm_cat.o ../../lib/libradius.a
15
 
        $(LIBTOOL) --mode=link $(CC) $^ $(LIBS) $(RLM_LIBS) -o $@
 
19
rlm_dbm_cat: rlm_dbm_cat.lo ../../lib/libradius.la
 
20
        $(LIBTOOL) --mode=link $(CC) $(LDFLAGS) $(RLM_LDFLAGS) \
 
21
                -o $@ $^ $(RLM_LIBS) $(LIBS)
16
22
 
17
23
#
18
24
#  Install the utility programs in the bin directory.
19
25
#
20
 
rlm_dbm_install:
21
 
        $(INSTALL) -m 755 $(INSTALLSTRIP) rlm_dbm_parser$(EXEEXT) $(R)$(bindir)
22
 
        $(INSTALL) -m 755 $(INSTALLSTRIP) rlm_dbm_cat$(EXEEXT)    $(R)$(bindir)
 
26
rlm_dbm_install: rlm_dbm_cat rlm_dbm_parser
 
27
        $(LIBTOOL) --mode=install $(INSTALL) -m 755 $(INSTALLSTRIP) \
 
28
                rlm_dbm_cat$(EXEEXT) $(R)$(bindir)
 
29
        $(LIBTOOL) --mode=install $(INSTALL) -m 755 $(INSTALLSTRIP) \
 
30
                rlm_dbm_parser$(EXEEXT) $(R)$(bindir)