1 |
mocchiut |
1.1 |
#***************************************************************************** |
2 |
|
|
# |
3 |
|
|
# FILE NAME: $Id: Makefile,v 1.3 2008-04-02 13:30:56 messineo Exp $ |
4 |
|
|
# VERSION: |
5 |
|
|
# AUTHOR: Nergal S.r.l. |
6 |
|
|
# DATE: |
7 |
|
|
# |
8 |
|
|
# DESCRIPTION: base Makefile |
9 |
|
|
# |
10 |
|
|
# REVISION HISTORY: |
11 |
|
|
# |
12 |
|
|
# Version Date Author Change Description |
13 |
|
|
# |
14 |
|
|
#*****************************************************************************/ |
15 |
|
|
|
16 |
|
|
|
17 |
|
|
#------------------------------------------------------------------------------ |
18 |
|
|
include $(BASEDIR)/event/Make.def |
19 |
|
|
#------------------------------------------------------------------------------ |
20 |
|
|
|
21 |
|
|
|
22 |
|
|
libs: |
23 |
|
|
for sub_dir in $(PHYSEXTDIR) ; do \ |
24 |
|
|
$(MAKE) -C $$sub_dir libs ; \ |
25 |
|
|
done |
26 |
|
|
|
27 |
|
|
|
28 |
|
|
|
29 |
|
|
clean: clean-subdir |
30 |
|
|
rm -f $(TARGETLIB) $(OBJDIR)/*.[oa] $(OBJDIR)/.*.d |
31 |
|
|
|
32 |
|
|
clean-subdir: |
33 |
|
|
for sub_dir in $(PHYSEXTDIR) ; do \ |
34 |
|
|
$(MAKE) -C $$sub_dir clean ; \ |
35 |
|
|
done |
36 |
|
|
|
37 |
|
|
-include $(DEPEND) |
38 |
|
|
|
39 |
|
|
|
40 |
|
|
#------------------------------------------------------------------------------ |
41 |
|
|
include $(BASEDIR)/PamOffLineSW/Make.def.post |
42 |
|
|
#------------------------------------------------------------------------------ |