author | laurent |
Tue, 15 Dec 2009 08:51:44 +0100 | |
changeset 235 | ed66dc50f31a |
parent 202 | da1a8186f86f |
child 243 | bdfee1f5be9e |
permissions | -rwxr-xr-x |
181 | 1 |
# include the system specific Makefile |
2 |
include ../Makefile.$(shell uname) |
|
3 |
||
4 |
||
5 |
||
6 |
||
7 |
SEARCH_UTIL_FILES = absyntax_utils.o |
|
8 |
SEARCH_UTIL_FILES += search_expression_type.o |
|
9 |
SEARCH_UTIL_FILES += decompose_var_instance_name.o |
|
10 |
SEARCH_UTIL_FILES += function_call_iterator.o |
|
11 |
SEARCH_UTIL_FILES += function_call_param_iterator.o |
|
12 |
SEARCH_UTIL_FILES += function_param_iterator.o |
|
13 |
SEARCH_UTIL_FILES += search_base_type.o |
|
14 |
SEARCH_UTIL_FILES += search_constant_type.o |
|
15 |
SEARCH_UTIL_FILES += search_fb_instance_decl.o |
|
16 |
SEARCH_UTIL_FILES += search_fb_typedecl.o |
|
201
e657008f43d0
Introducing the search_il_operand_type files in the absyntax_utils folder.
Catarina Boucinha <ccb@fe.up.pt>
parents:
181
diff
changeset
|
17 |
SEARCH_UTIL_FILES += search_il_operand_type.o |
181 | 18 |
SEARCH_UTIL_FILES += search_varfb_instance_type.o |
19 |
SEARCH_UTIL_FILES += search_var_instance_decl.o |
|
20 |
SEARCH_UTIL_FILES += spec_init_separator.o |
|
21 |
SEARCH_UTIL_FILES += type_initial_value.o |
|
202
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
201
diff
changeset
|
22 |
SEARCH_UTIL_FILES += add_en_eno_param_decl.o |
da1a8186f86f
Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents:
201
diff
changeset
|
23 |
SEARCH_UTIL_FILES += get_sizeof_datatype.o |
181 | 24 |
SEARCH_UTIL_FILES += get_function_type.o |
25 |
||
26 |
||
27 |
default: all |
|
28 |
||
29 |
all: $(SEARCH_UTIL_FILES) |
|
30 |
||
31 |
||
32 |
||
33 |
clean: |
|
34 |
rm -f *.o Makefile.depend |
|
35 |
||
36 |
||
37 |
CXXFLAGS += -I. -I../* |
|
38 |
||
39 |
||
40 |
||
41 |
Makefile.depend depend: |
|
42 |
$(CXX) -MM -MG -I. *.cc > Makefile.depend |
|
43 |
#| perl -pe 's/:/ Makefile.depend:/' > Makefile.depend |
|
44 |
||
45 |
include Makefile.depend |