source: trunk/IPs/systemC/processor/Morpheo/TopLevel/Makefile.deps @ 88

Last change on this file since 88 was 88, checked in by rosiere, 15 years ago

Almost complete design
with Test and test platform

  • Property svn:keywords set to Id
File size: 1.1 KB
Line 
1#
2# $Id: Makefile.deps 88 2008-12-10 18:31:39Z rosiere $
3#
4# [ Description ]
5#
6# Makefile
7#
8# DIR_MORPHEO must be defined
9
10Morpheo                         = yes
11
12ifndef Configuration
13include                         $(DIR_MORPHEO)/Behavioural/Configuration/Makefile.deps
14endif
15ifndef Core
16include                         $(DIR_MORPHEO)/Behavioural/Core/Makefile.deps
17endif
18
19#-----[ Directory ]----------------------------------------
20
21Morpheo_DIR                     =       $(DIR_MORPHEO)/TopLevel
22
23#-----[ Library ]------------------------------------------
24
25Morpheo_LIBRARY                 =       -lMorpheo                       \
26                                        $(Configuration_LIBRARY)        \
27                                        $(Core_LIBRARY)
28
29Morpheo_DIR_LIBRARY             =       -L$(Morpheo_DIR)/lib            \
30                                        $(Configuration_DIR_LIBRARY)    \
31                                        $(Core_DIR_LIBRARY)
32
33#-----[ Rules ]--------------------------------------------
34
35Morpheo_library                 :
36                                @\
37                                $(MAKE) Configuration_library;          \
38                                $(MAKE) Core_library;                   \
39                                $(MAKE) --directory=$(Morpheo_DIR) --makefile=Makefile;
40
41Morpheo_library_clean           :
42                                @\
43                                $(MAKE) Configuration_library_clean;    \
44                                $(MAKE) Core_library_clean;             \
45                                $(MAKE) --directory=$(Morpheo_DIR) --makefile=Makefile clean;
46
47
Note: See TracBrowser for help on using the repository browser.