Files
asterisk/channels/Makefile
T

38 lines
1.0 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)
2003-10-16 10:44:04 +00: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)