diff options
Diffstat (limited to 'src/modules/rlm_example/all.mk.in')
-rw-r--r-- | src/modules/rlm_example/all.mk.in | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/src/modules/rlm_example/all.mk.in b/src/modules/rlm_example/all.mk.in new file mode 100644 index 0000000..858b5da --- /dev/null +++ b/src/modules/rlm_example/all.mk.in @@ -0,0 +1,44 @@ +####################################################################### +# +# TARGET should be set by autoconf only. Don't touch it. +# +# The SOURCES definition should list ALL source files. +# +# SRC_CFLAGS defines addition C compiler flags. You usually don't +# want to modify this, though. Get it from autoconf. +# +# The TGT_LDLIBS definition should list ALL required libraries. +# +####################################################################### + +TARGETNAME := @targetname@ + +ifneq "$(TARGETNAME)" "" +TARGET := $(TARGETNAME).a +endif + +SOURCES := $(TARGETNAME).c other.c + +SRC_CFLAGS := @mod_cflags@ +TGT_LDLIBS := @mod_ldflags@ + +# +# If the target has documentation in man format it should be set here +# +#MAN := example.8 + +# +# Install targets are automagically created for libraries and binary targets, +# you only need to create manual targets for things like example scripts, and +# support files. +# +# The installation directory target should always be listed first, and should +# be one of: +# * install.raddbdir +# * install.bindir +# * install.sbindir + +#install: install.raddbdir $(R)$(raddbdir)/example.sh + +#$(R)$(raddbdir)/example.pl: src/modules/$(TARGETNAME)/example.sh +# @$(INSTALL) -m 755 src/modules/$(TARGETNAME)/example.sh $(R)$(raddbdir)/ |