source: trunk/IPs/systemC/Environment/Cache/Makefile @ 88

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

Almost complete design
with Test and test platform

  • Property svn:keywords set to Id
File size: 732 bytes
RevLine 
[78]1#-----[ Directory ]----------------------------------------
2
3DIR_QUEUE                       = ../Queue
4
5#-----[ Variable ]-----------------------------------------
6
[88]7ENTITY                         ?= Cache
8
[81]9OBJECTS_DEPS                    = $(patsubst $(DIR_QUEUE)/$(DIR_SRC)/%.cpp,$(DIR_QUEUE)/$(DIR_OBJ)/%.o,$(wildcard $(DIR_QUEUE)/$(DIR_SRC)/*.cpp))
[78]10
11#-----[ Rules ]--------------------------------------------
12
13all                             :
14                                @\
15                                $(MAKE) --directory=$(DIR_QUEUE) all; \
[80]16                                $(MAKE)                          all_environment;
[78]17
18clean                           :
19                                @\
20                                $(MAKE) --directory=$(DIR_QUEUE) clean; \
[80]21                                $(MAKE)                          environment_clean;
[78]22
[88]23clean_all                       : clean
24
[78]25help                            :
[80]26                                @$(MAKE) environment_help
[78]27
[80]28include                         ../Makefile.Environment
Note: See TracBrowser for help on using the repository browser.