author | Catarina Boucinha <ccb@fe.up.pt> |
Thu, 02 Jul 2009 11:26:25 +0100 | |
changeset 201 | e657008f43d0 |
parent 181 | 38d6eb056260 |
child 202 | da1a8186f86f |
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 |
|
22 |
SEARCH_UTIL_FILES += get_function_type.o |
|
23 |
||
24 |
||
25 |
default: all |
|
26 |
||
27 |
all: $(SEARCH_UTIL_FILES) |
|
28 |
||
29 |
||
30 |
||
31 |
clean: |
|
32 |
rm -f *.o Makefile.depend |
|
33 |
||
34 |
||
35 |
CXXFLAGS += -I. -I../* |
|
36 |
||
37 |
||
38 |
||
39 |
Makefile.depend depend: |
|
40 |
$(CXX) -MM -MG -I. *.cc > Makefile.depend |
|
41 |
#| perl -pe 's/:/ Makefile.depend:/' > Makefile.depend |
|
42 |
||
43 |
include Makefile.depend |