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