author | Mario de Sousa <msousa@fe.up.pt> |
Thu, 31 Mar 2011 10:45:34 +0100 | |
changeset 258 | d7d92b2f87e9 |
parent 243 | bdfee1f5be9e |
child 279 | c0453b7f99df |
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: |
|
243 | 25 |
$(CXX) -MM -MG -I. *.cc \ |
26 |
| sed 's/:/ Makefile.depend:/' > Makefile.depend |
|
204 | 27 |
|
243 | 28 |
include Makefile.depend |