--- chewbacca/event/physics/Makefile 2008/09/23 07:20:05 1.1.1.1 +++ chewbacca/event/physics/Makefile 2009/07/29 15:47:32 1.2 @@ -1,6 +1,6 @@ #***************************************************************************** # -# FILE NAME: $Id: Makefile,v 1.3 2008-04-02 13:30:56 messineo Exp $ +# FILE NAME: $Id: Makefile,v 1.1.1.1 2008/09/23 07:20:05 mocchiut Exp $ # VERSION: # AUTHOR: Nergal S.r.l. # DATE: @@ -20,19 +20,34 @@ libs: +ifeq ($(verbose),) + @for sub_dir in $(PHYSEXTDIR) ; do \ + $(MAKE) -s -C $$sub_dir libs ; \ + done +else for sub_dir in $(PHYSEXTDIR) ; do \ $(MAKE) -C $$sub_dir libs ; \ done - +endif clean: clean-subdir +ifeq ($(verbose),) + rm -f $(TARGETLIB) $(OBJDIR)/*.[oa] $(OBJDIR)/.*.d +else rm -f $(TARGETLIB) $(OBJDIR)/*.[oa] $(OBJDIR)/.*.d +endif clean-subdir: +ifeq ($(verbose),) + for sub_dir in $(PHYSEXTDIR) ; do \ + $(MAKE) -s -C $$sub_dir clean ; \ + done +else for sub_dir in $(PHYSEXTDIR) ; do \ $(MAKE) -C $$sub_dir clean ; \ done +endif -include $(DEPEND)