source: trunk/IPs/systemC/hierarchy_memory/file/Makefile @ 81

Last change on this file since 81 was 81, checked in by rosiere, 16 years ago
  • Finish Environment (and test)
  • Continue predictor_unit
  • Add external tools
  • svn keyword "Id" set
  • Property svn:keywords set to Id
File size: 255 bytes
Line 
1
2CXX                     = g++
3CXX_OPT                 = -g3 -Wall -Werror -ansi
4RM                      = rm -f
5
6EXE                     = $(patsubst %.cpp,%.x ,$(wildcard *.cpp) )
7HEADERS                 = $(wildcard *.h)
8
9all                     : $(EXE)
10                        ./$(EXE)
11
12%.x                     : %.cpp $(HEADERS)
13                        $(CXX) $(CXX_OPT) -o $@ $<
14
15clean                   :
16                        $(RM) $(EXE) *~
Note: See TracBrowser for help on using the repository browser.