mirror of
https://github.com/asterisk/asterisk.git
synced 2026-04-28 09:43:08 +00:00
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r242520 | tilghman | 2010-01-24 00:33:01 -0600 (Sun, 24 Jan 2010) | 8 lines Only rebuild bison and flex source files on demand, if bison and flex are detected by the configure script. Changed after discussion on the -dev list about possible unnecessary build failures, due to checkouts/untars causing these special source files to possibly be newer than their resulting C files. This should additionally ensure that nobody need learn about extra Makefile arguments to ensure the proper files get rebuilt when changes are made to these special source files. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@242521 65c4cc65-6c06-0410-ace0-fbb531ad65f3
35 lines
789 B
Makefile
35 lines
789 B
Makefile
#
|
|
# Asterisk -- A telephony toolkit for Linux.
|
|
#
|
|
# Makefile for PBX modules
|
|
#
|
|
# Copyright (C) 1999-2006, Digium, Inc.
|
|
#
|
|
# This program is free software, distributed under the terms of
|
|
# the GNU General Public License
|
|
#
|
|
|
|
-include $(ASTTOPDIR)/menuselect.makeopts $(ASTTOPDIR)/menuselect.makedeps $(ASTTOPDIR)/makeopts
|
|
|
|
MODULE_PREFIX=pbx
|
|
MENUSELECT_CATEGORY=PBX
|
|
MENUSELECT_DESCRIPTION=PBX Modules
|
|
|
|
all: _all
|
|
|
|
include $(ASTTOPDIR)/Makefile.moddir_rules
|
|
|
|
ifneq ($(findstring $(OSARCH), mingw32 cygwin ),)
|
|
LIBS+= -lres_ael_share.so -lres_monitor.so
|
|
endif
|
|
|
|
clean::
|
|
rm -f ael/*.o ael/*.i
|
|
|
|
dundi-parser.o: dundi-parser.h
|
|
dundi-parser.o: _ASTCFLAGS+=-I.
|
|
|
|
pbx_gtkconsole.o: _ASTCFLAGS+=-Wno-strict-prototypes
|
|
|
|
$(if $(filter pbx_dundi,$(EMBEDDED_MODS)),modules.link,pbx_dundi.so): dundi-parser.o
|