1 |
#***************************************************************************** |
2 |
# |
3 |
# FILE NAME: $Id: Makefile,v 1.1.1.1 2008/09/23 07:20:05 mocchiut 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 |
ifeq ($(verbose),) |
24 |
@for sub_dir in $(PHYSEXTDIR) ; do \ |
25 |
$(MAKE) -s -C $$sub_dir libs ; \ |
26 |
done |
27 |
else |
28 |
for sub_dir in $(PHYSEXTDIR) ; do \ |
29 |
$(MAKE) -C $$sub_dir libs ; \ |
30 |
done |
31 |
endif |
32 |
|
33 |
|
34 |
clean: clean-subdir |
35 |
ifeq ($(verbose),) |
36 |
rm -f $(TARGETLIB) $(OBJDIR)/*.[oa] $(OBJDIR)/.*.d |
37 |
else |
38 |
rm -f $(TARGETLIB) $(OBJDIR)/*.[oa] $(OBJDIR)/.*.d |
39 |
endif |
40 |
|
41 |
clean-subdir: |
42 |
ifeq ($(verbose),) |
43 |
for sub_dir in $(PHYSEXTDIR) ; do \ |
44 |
$(MAKE) -s -C $$sub_dir clean ; \ |
45 |
done |
46 |
else |
47 |
for sub_dir in $(PHYSEXTDIR) ; do \ |
48 |
$(MAKE) -C $$sub_dir clean ; \ |
49 |
done |
50 |
endif |
51 |
|
52 |
-include $(DEPEND) |
53 |
|
54 |
|
55 |
#------------------------------------------------------------------------------ |
56 |
include $(BASEDIR)/PamOffLineSW/Make.def.post |
57 |
#------------------------------------------------------------------------------ |