#***************************************************************************** # # FILE NAME: $Id: Makefile,v 1.3 2008-04-02 13:30:56 messineo Exp $ # VERSION: # AUTHOR: Nergal S.r.l. # DATE: # # DESCRIPTION: base Makefile # # REVISION HISTORY: # # Version Date Author Change Description # #*****************************************************************************/ #------------------------------------------------------------------------------ include $(BASEDIR)/event/Make.def #------------------------------------------------------------------------------ libs: for sub_dir in $(PHYSEXTDIR) ; do \ $(MAKE) -C $$sub_dir libs ; \ done clean: clean-subdir rm -f $(TARGETLIB) $(OBJDIR)/*.[oa] $(OBJDIR)/.*.d clean-subdir: for sub_dir in $(PHYSEXTDIR) ; do \ $(MAKE) -C $$sub_dir clean ; \ done -include $(DEPEND) #------------------------------------------------------------------------------ include $(BASEDIR)/PamOffLineSW/Make.def.post #------------------------------------------------------------------------------