~ubuntu-branches/ubuntu/natty/freeradius/natty-updates

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Paul Hampson
  • Date: 2006-01-15 13:34:13 UTC
  • mto: (3.1.3 dapper) (4.1.3 sid) (1.1.14 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20060115133413-zo1dslttvdoalqym
Tags: upstream-1.1.0
ImportĀ upstreamĀ versionĀ 1.1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#######################################################################
2
 
#
3
 
# TARGET should be set by autoconf only.  Don't touch it.
4
 
#
5
 
# The SRCS definition should list ALL source files.
6
 
#
7
 
# The HEADERS definition should list ALL header files
8
 
#
9
 
# RLM_CFLAGS defines addition C compiler flags.  You usually don't
10
 
# want to modify this, though.  Get it from autoconf.
11
 
#
12
 
# The RLM_LIBS definition should list ALL required libraries.
13
 
# These libraries really should be pulled from the 'config.mak'
14
 
# definitions, if at all possible.  These definitions are also
15
 
# echoed into another file in ../lib, where they're picked up by
16
 
# ../main/Makefile for building the version of the server with
17
 
# statically linked modules.  Get it from autoconf.
18
 
#
19
 
# RLM_INSTALL is the names of additional rules you need to install 
20
 
# some particular portion of the module.  Usually, leave it blank.
21
 
#
22
 
#######################################################################
23
 
TARGET      = @targetname@
24
 
SRCS        = x99_rlm.c x99_util.c x99_state.c x99_mac.c x99_sync.c
25
 
SRCS       += x99_site.c x99_pwe.c x99_log.c
26
 
HEADERS     = x99.h x99_rad.h x99_sync.h x99_pwe.h
27
 
RLM_CFLAGS  = @x99_token_cflags@
28
 
RLM_LIBS    = @x99_token_ldflags@
29
 
 
30
 
## this uses the RLM_CFLAGS and RLM_LIBS and SRCS defs to make TARGET.
31
 
include ../rules.mak
32
 
 
33
 
$(STATIC_OBJS): $(HEADERS)
34
 
 
35
 
$(DYNAMIC_OBJS): $(HEADERS)
36