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
|
|
17 |
SEARCH_UTIL_FILES += search_varfb_instance_type.o
|
|
18 |
SEARCH_UTIL_FILES += search_var_instance_decl.o
|
|
19 |
SEARCH_UTIL_FILES += spec_init_separator.o
|
|
20 |
SEARCH_UTIL_FILES += type_initial_value.o
|
|
21 |
SEARCH_UTIL_FILES += get_function_type.o
|
|
22 |
|
|
23 |
|
|
24 |
default: all
|
|
25 |
|
|
26 |
all: $(SEARCH_UTIL_FILES)
|
|
27 |
|
|
28 |
|
|
29 |
|
|
30 |
clean:
|
|
31 |
rm -f *.o Makefile.depend
|
|
32 |
|
|
33 |
|
|
34 |
CXXFLAGS += -I. -I../*
|
|
35 |
|
|
36 |
|
|
37 |
|
|
38 |
Makefile.depend depend:
|
|
39 |
$(CXX) -MM -MG -I. *.cc > Makefile.depend
|
|
40 |
#| perl -pe 's/:/ Makefile.depend:/' > Makefile.depend
|
|
41 |
|
|
42 |
include Makefile.depend
|