mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-29 18:19:30 +00:00
don't include files that cause additional targets to get executed if the target
called was clean, distclean, or update git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@39640 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
16
Makefile
16
Makefile
@@ -131,13 +131,17 @@ ASTCFLAGS=
|
||||
GLOBAL_MAKEOPTS=$(wildcard /etc/asterisk.makeopts)
|
||||
USER_MAKEOPTS=$(wildcard ~/.asterisk.makeopts)
|
||||
|
||||
ifneq ($(wildcard menuselect.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
|
||||
|
||||
ifneq ($(wildcard makeopts),)
|
||||
ifeq ($(strip $(foreach var,clean distclean dist-clean update,$(findstring $(var),$(MAKECMDGOALS)))),)
|
||||
ifneq ($(wildcard makeopts),)
|
||||
include makeopts
|
||||
endif
|
||||
endif
|
||||
|
||||
TOPDIR_CFLAGS=-Iinclude
|
||||
@@ -431,12 +435,16 @@ editline/libedit.a:
|
||||
db1-ast/libdb1.a:
|
||||
$(MAKE) -C db1-ast libdb1.a
|
||||
|
||||
ifneq ($(wildcard .depend),)
|
||||
ifeq ($(strip $(foreach var,clean distclean dist-clean update,$(findstring $(var),$(MAKECMDGOALS)))),)
|
||||
ifneq ($(wildcard .depend),)
|
||||
include .depend
|
||||
endif
|
||||
endif
|
||||
|
||||
ifneq ($(wildcard .tags-depend),)
|
||||
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:
|
||||
|
Reference in New Issue
Block a user