|
|
|
@ -131,14 +131,18 @@ ASTCFLAGS=
|
|
|
|
|
GLOBAL_MAKEOPTS=$(wildcard /etc/asterisk.makeopts)
|
|
|
|
|
USER_MAKEOPTS=$(wildcard ~/.asterisk.makeopts)
|
|
|
|
|
|
|
|
|
|
ifeq ($(strip $(foreach var,clean distclean dist-clean update,$(findstring $(var),$(MAKECMDGOALS)))),)
|
|
|
|
|
ifneq ($(wildcard menuselect.makeopts),)
|
|
|
|
|
include menuselect.makeopts
|
|
|
|
|
include menuselect.makedeps
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
ifeq ($(strip $(foreach var,clean distclean dist-clean update,$(findstring $(var),$(MAKECMDGOALS)))),)
|
|
|
|
|
ifneq ($(wildcard makeopts),)
|
|
|
|
|
include makeopts
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
TOPDIR_CFLAGS=-Iinclude
|
|
|
|
|
MOD_SUBDIR_CFLAGS=-I../include -I..
|
|
|
|
@ -431,13 +435,17 @@ editline/libedit.a:
|
|
|
|
|
db1-ast/libdb1.a:
|
|
|
|
|
$(MAKE) -C db1-ast libdb1.a
|
|
|
|
|
|
|
|
|
|
ifeq ($(strip $(foreach var,clean distclean dist-clean update,$(findstring $(var),$(MAKECMDGOALS)))),)
|
|
|
|
|
ifneq ($(wildcard .depend),)
|
|
|
|
|
include .depend
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
ifeq ($(strip $(foreach var,clean distclean dist-clean update,$(findstring $(var),$(MAKECMDGOALS)))),)
|
|
|
|
|
ifneq ($(wildcard .tags-depend),)
|
|
|
|
|
include .tags-depend
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
ast_expr2.c ast_expr2.h:
|
|
|
|
|
bison -o $@ -d --name-prefix=ast_yy ast_expr2.y
|
|
|
|
|