author | Mario de Sousa <msousa@fe.up.pt> |
Wed, 30 Mar 2011 19:53:32 +0100 | |
changeset 257 | 90782e241346 |
parent 204 | 8ffa211b7f9a |
child 243 | bdfee1f5be9e |
permissions | -rwxr-xr-x |
204 | 1 |
# include the system specific Makefile |
2 |
include ../Makefile.$(shell uname) |
|
3 |
||
4 |
||
5 |
||
6 |
||
7 |
STAGE3_FILES = stage3.o |
|
8 |
STAGE3_FILES += visit_expression_type.o |
|
9 |
||
10 |
default: all |
|
11 |
||
12 |
all: $(STAGE3_FILES) |
|
13 |
||
14 |
||
15 |
||
16 |
clean: |
|
17 |
rm -f *.o Makefile.depend |
|
18 |
||
19 |
||
20 |
CXXFLAGS += -I. -I../* |
|
21 |
||
22 |
||
23 |
||
24 |
Makefile.depend depend: |
|
25 |
$(CXX) -MM -MG -I. *.cc > Makefile.depend |
|
26 |
#| perl -pe 's/:/ Makefile.depend:/' > Makefile.depend |
|
27 |
||
28 |
include Makefile.depend |