aboutsummaryrefslogtreecommitdiffstats
path: root/cdr/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'cdr/Makefile')
-rw-r--r--cdr/Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/cdr/Makefile b/cdr/Makefile
index dc765ccc1..eefeb4e46 100644
--- a/cdr/Makefile
+++ b/cdr/Makefile
@@ -11,8 +11,14 @@
-include ../menuselect.makeopts ../menuselect.makedeps
-C_MODS:=$(filter-out $(MENUSELECT_CDR),$(patsubst %.c,%,$(wildcard cdr_*.c)))
-CC_MODS:=$(filter-out $(MENUSELECT_CDR),$(patsubst %.cc,%,$(wildcard cdr_*.cc)))
+MENUSELECT_CATEGORY=CDR
+MENUSELECT_DESCRIPTION=Call Detail Recording
+
+ALL_C_MODS:=$(patsubst %.c,%,$(wildcard cdr_*.c))
+ALL_CC_MODS:=$(patsubst %.cc,%,$(wildcard cdr_*.cc))
+
+C_MODS:=$(filter-out $(MENUSELECT_APPS),$(ALL_C_MODS))
+CC_MODS:=$(filter-out $(MENUSELECT_APPS),$(ALL_CC_MODS))
LOADABLE_MODS:=$(C_MODS) $(CC_MODS)