dect
/
asterisk
Archived
13
0
Fork 0

support cygwin targets

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@89376 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
rizzo 2007-11-17 11:57:52 +00:00
parent 9abcc5eaec
commit c1f095dd97
1 changed files with 22 additions and 3 deletions

View File

@ -251,9 +251,15 @@ endif
ASTCFLAGS+=$(MALLOC_DEBUG)$(BUSYDETECT)$(OPTIONS)
MOD_SUBDIRS:=res channels pbx apps codecs formats cdr funcs main
MOD_SUBDIRS:=channels pbx apps codecs formats cdr funcs
OTHER_SUBDIRS:=utils agi
SUBDIRS:=$(OTHER_SUBDIRS) $(MOD_SUBDIRS)
# in cygwin we need to build main (i.e. asterisk.dll) first, then res.
ifneq ($(findstring $(OSARCH), mingw32 cygwin ),)
SUBDIRS+= main res
else
OTHER_SUBDIRS += res main
endif
SUBDIRS_INSTALL:=$(SUBDIRS:%=%-install)
SUBDIRS_CLEAN:=$(SUBDIRS:%=%-clean)
SUBDIRS_DIST_CLEAN:=$(SUBDIRS:%=%-dist-clean)
@ -339,12 +345,25 @@ $(SUBDIRS): include/asterisk/version.h include/asterisk/build.h include/asterisk
# a parallel build, since if there are modules selected to be embedded the
# directories containing them must be completed before the main Asterisk
# binary can be built
ifeq ($(findstring $(OSARCH), mingw32 cygwin ),)
main: $(filter-out main,$(MOD_SUBDIRS))
else
SUBDIR_DEPS=main res
main:
@ASTCFLAGS="$(MOD_SUBDIR_CFLAGS) $(ASTCFLAGS)" \
ASTLDFLAGS="$(ASTLDFLAGS)" AST_LIBS="$(AST_LIBS)" \
$(MAKE) --no-print-directory --no-builtin-rules -C $@ SUBDIR=$@ all
$(MOD_SUBDIRS):
res: main
@ASTCFLAGS="$(MOD_SUBDIR_CFLAGS) $(ASTCFLAGS)" \
ASTLDFLAGS="$(ASTLDFLAGS)" AST_LIBS="$(AST_LIBS)" \
$(MAKE) --no-print-directory --no-builtin-rules -C $@ SUBDIR=$@ all
endif
$(MOD_SUBDIRS): $(SUBDIR_DEPS)
@ASTCFLAGS="$(MOD_SUBDIR_CFLAGS) $(ASTCFLAGS)" ASTLDFLAGS="$(ASTLDFLAGS)" $(MAKE) --no-print-directory --no-builtin-rules -C $@ SUBDIR=$@ all
$(OTHER_SUBDIRS):
$(OTHER_SUBDIRS): $(SUBDIR_DEPS)
@ASTCFLAGS="$(OTHER_SUBDIR_CFLAGS) $(ASTCFLAGS)" ASTLDFLAGS="$(ASTLDFLAGS)" $(MAKE) --no-print-directory --no-builtin-rules -C $@ SUBDIR=$@ all
defaults.h: makeopts