source: trunk/IPs/systemC/hierarchy_memory/ramlock/Makefile @ 2

Last change on this file since 2 was 2, checked in by kane, 17 years ago

Import Morpheo

File size: 326 bytes
Line 
1INCLUDE                 = ../file
2# DEBUG                 = -DDEBUG
3DEBUG                   =
4CXX                     = g++
5CXX_OPT                 = -g3 -Wall -Werror -ansi -I$(INCLUDE) $(DEBUG)
6RM                      = rm -f
7
8EXE                     = $(patsubst %.cpp,%.x ,$(wildcard *.cpp) )
9HEADERS                 = $(wildcard *.h)
10
11all                     : $(EXE)
12                        ./$(EXE)
13
14%.x                     : %.cpp $(HEADERS)
15                        $(CXX) $(CXX_OPT) -o $@ $<
16
17clean                   :
18                        $(RM) $(EXE) *~
Note: See TracBrowser for help on using the repository browser.