diff options
Diffstat (limited to '')
-rw-r--r-- | src/modules/rlm_python/all.mk.in | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/modules/rlm_python/all.mk.in b/src/modules/rlm_python/all.mk.in new file mode 100644 index 0000000..276a3a4 --- /dev/null +++ b/src/modules/rlm_python/all.mk.in @@ -0,0 +1,26 @@ +TARGETNAME := @targetname@ + +ifneq "$(TARGETNAME)" "" +TARGET := $(TARGETNAME).a +endif + +SOURCES := $(TARGETNAME).c + +SRC_CFLAGS := @mod_cflags@ +TGT_LDLIBS := @mod_ldflags@ + +ifneq "$(TARGETNAME)" "" +install: $(R)$(modconfdir)/python/radiusd.py $(R)$(modconfdir)/python/example.py + +$(R)$(modconfdir)/python: | $(R)$(modconfdir) + @echo INSTALL $(patsubst $(R)$(raddbdir)%,raddb%,$@) + @$(INSTALL) -d -m 750 $@ + +$(R)$(modconfdir)/python/radiusd.py: src/modules/rlm_python/radiusd.py | $(R)$(modconfdir)/python + @$(ECHO) INSTALL $(notdir $<) + @$(INSTALL) -m 755 $< $(R)$(modconfdir)/python + +$(R)$(modconfdir)/python/example.py: src/modules/rlm_python/example.py | $(R)$(modconfdir)/python + @$(ECHO) INSTALL $(notdir $<) + @$(INSTALL) -m 755 $< $(R)$(modconfdir)/python +endif |