From fa4d13863c3f2dca3a79cb07ea7c95326a42cc9f Mon Sep 17 00:00:00 2001 From: "ramiro%netscape.com" Date: Fri, 16 Jul 1999 13:47:20 +0000 Subject: [PATCH] Do nothing if MOZ_ENABLE_GTK_MOZILLA is not set. --- webshell/embed/Makefile.in | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/webshell/embed/Makefile.in b/webshell/embed/Makefile.in index 7c876bfe70f..5764f843005 100644 --- a/webshell/embed/Makefile.in +++ b/webshell/embed/Makefile.in @@ -22,14 +22,7 @@ VPATH = @srcdir@ include $(DEPTH)/config/autoconf.mk -## -## This does not work, cause GtkMozilla does not use the mozilla build -## system. -## -## ifdef MOZ_ENABLE_GTK_MOZILLA -## DIRS += gtk -## endif - +ifdef MOZ_ENABLE_GTK_MOZILLA all:: export libs install export:: libs:: @@ -40,5 +33,13 @@ install:: clobber:: @cd gtk ; $(MAKE) clean ; cd .. +else +all:: +export:: +libs:: +depend:: +install:: +clobber:: +endif include $(topsrcdir)/config/rules.mk