Files
asterisk/channels/Makefile
T

43 lines
1.3 KiB
Makefile
Raw Normal View History

1999-12-01 05:25:44 +00:00
#
2012-10-14 21:47:40 +00:00
# Asterisk -- An open source telephony toolkit.
#
# Makefile for channel drivers
1999-12-01 05:25:44 +00:00
#
2006-02-11 17:58:21 +00:00
# Copyright (C) 1999-2006, Digium, Inc.
1999-12-01 05:25:44 +00:00
#
# This program is free software, distributed under the terms of
# the GNU General Public License
#
-include $(ASTTOPDIR)/menuselect.makeopts $(ASTTOPDIR)/menuselect.makedeps
2007-12-17 07:25:35 +00:00
MODULE_PREFIX=chan
MENUSELECT_CATEGORY=CHANNELS
MENUSELECT_DESCRIPTION=Channel Drivers
2005-11-01 21:53:30 +00:00
all: _all
1999-12-01 05:25:44 +00:00
include $(ASTTOPDIR)/Makefile.moddir_rules
2007-11-20 16:12:10 +00:00
ifneq ($(findstring $(OSARCH), mingw32 cygwin ),)
LIBS+= -lres_monitor.so
2007-11-20 16:12:10 +00:00
endif
$(call MOD_ADD_C,chan_iax2,$(wildcard iax2/*.c))
$(call MOD_ADD_C,chan_sip,$(wildcard sip/*.c))
$(call MOD_ADD_C,chan_pjsip,$(wildcard pjsip/*.c))
$(call MOD_ADD_C,chan_dahdi,$(wildcard dahdi/*.c) sig_analog.c sig_pri.c sig_ss7.c)
$(call MOD_ADD_C,chan_misdn,misdn_config.c misdn/isdn_lib.c misdn/isdn_msg_parser.c)
2002-02-16 19:23:59 +00:00
chan_dahdi.o: _ASTCFLAGS+=$(call get_menuselect_cflags,LOTS_OF_SPANS)
2017-08-02 15:16:43 -04:00
chan_mgcp.o: _ASTCFLAGS+=$(AST_NO_FORMAT_TRUNCATION)
2018-05-06 22:17:34 -04:00
chan_unistim.o: _ASTCFLAGS+=$(AST_NO_FORMAT_TRUNCATION)
chan_phone.o: _ASTCFLAGS+=$(AST_NO_FORMAT_TRUNCATION)
chan_sip.o: _ASTCFLAGS+=$(AST_NO_FORMAT_TRUNCATION)
2017-07-27 21:58:22 -04:00
2009-07-21 13:28:04 +00:00
chan_misdn.o: _ASTCFLAGS+=-Imisdn
misdn_config.o: _ASTCFLAGS+=-Imisdn
misdn/isdn_lib.o: _ASTCFLAGS+=-Wno-strict-aliasing
$(call MOD_ADD_C,chan_oss,console_video.c vgrabbers.c console_board.c)