Last change
on this file since 90 was
81,
checked in by rosiere, 17 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 | |
---|
2 | CXX = g++ |
---|
3 | CXX_OPT = -g3 -Wall -Werror -ansi |
---|
4 | RM = rm -f |
---|
5 | |
---|
6 | EXE = $(patsubst %.cpp,%.x ,$(wildcard *.cpp) ) |
---|
7 | HEADERS = $(wildcard *.h) |
---|
8 | |
---|
9 | all : $(EXE) |
---|
10 | ./$(EXE) |
---|
11 | |
---|
12 | %.x : %.cpp $(HEADERS) |
---|
13 | $(CXX) $(CXX_OPT) -o $@ $< |
---|
14 | |
---|
15 | clean : |
---|
16 | $(RM) $(EXE) *~ |
---|
Note: See
TracBrowser
for help on using the repository browser.