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

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

Almost complete design
with Test and test platform

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