From 90098fa198c031e9cbb99bc19220f592f52652d4 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Wed, 12 Jul 2006 19:36:42 +0000 Subject: don't let make run configure or menuselect if the target is either "clean" or "distclean" git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@37476 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index e21b79a58..6245175ee 100644 --- a/Makefile +++ b/Makefile @@ -123,12 +123,16 @@ GLOBAL_MAKEOPTS=$(wildcard /etc/asterisk.makeopts) USER_MAKEOPTS=$(wildcard ~/.asterisk.makeopts) ifneq ($(wildcard menuselect.makeopts),) + ifeq ($(findstring clean,$(MAKECMDGOALS))$(findstring distclean,$(MAKECMDGOALS)),) include menuselect.makeopts include menuselect.makedeps + endif endif ifneq ($(wildcard makeopts),) + ifeq ($(findstring clean,$(MAKECMDGOALS))$(findstring distclean,$(MAKECMDGOALS)),) include makeopts + endif endif TOPDIR_CFLAGS=-Iinclude @@ -423,11 +427,15 @@ db1-ast/libdb1.a: $(MAKE) -C db1-ast libdb1.a ifneq ($(wildcard .depend),) + ifeq ($(findstring clean,$(MAKECMDGOALS))$(findstring distclean,$(MAKECMDGOALS)),) include .depend + endif endif ifneq ($(wildcard .tags-depend),) + ifeq ($(findstring clean,$(MAKECMDGOALS))$(findstring distclean,$(MAKECMDGOALS)),) include .tags-depend + endif endif ast_expr2.c ast_expr2.h: -- cgit v1.2.3