Coccinelle release 1.0.0-rc15
[bpt/coccinelle.git] / parsing_c / Makefile
CommitLineData
feec80c3
C
1ifneq ($(MAKECMDGOALS),distclean)
2include ../Makefile.config
3endif
0708f913 4
34e49164
C
5##############################################################################
6# Variables
7##############################################################################
8TARGET=parsing_c
9
b1b2de81 10# - type_cocci.ml ast_cocci.ml # + unparse_hrule
485bce71 11SRC= flag_parsing_c.ml parsing_stat.ml \
708f4980 12 token_c.ml ast_c.ml control_flow_c.ml \
34e49164 13 visitor_c.ml lib_parsing_c.ml \
708f4980 14 control_flow_c_build.ml \
485bce71
C
15 pretty_print_c.ml \
16 semantic_c.ml lexer_parser.ml parser_c.ml lexer_c.ml \
708f4980 17 token_helpers.ml token_views_c.ml \
978fd7e5
C
18 cpp_token_c.ml \
19 parsing_hacks.ml \
20 cpp_analysis_c.ml \
485bce71 21 unparse_cocci.ml unparse_c.ml unparse_hrule.ml \
978fd7e5 22 parsing_recovery_c.ml parsing_consistency_c.ml \
708f4980 23 parse_c.ml type_c.ml \
485bce71 24 cpp_ast_c.ml \
0708f913
C
25 type_annoter_c.ml comment_annotater_c.ml \
26 compare_c.ml \
34e49164
C
27 test_parsing_c.ml
28
29
34e49164 30
feec80c3 31# ast_cocci.ml and unparse_cocci.ml should be deleted in the future
b1b2de81 32# to make parsing_c really independent of coccinelle.
485bce71 33# control_flow_c have also coccinelle dependencies.
b1b2de81 34# old: parsing_c now depends on cocci_parser because in addition to decorate
485bce71 35# the token in Ast_c with some parse info, we now also make some place to
34e49164
C
36# welcome some mcodekind of Ast_cocci.
37LIBS=../commons/commons.cma ../globals/globals.cma \
38 ../parsing_cocci/cocci_parser.cma
39
90aeb998 40INCLUDESDEP= -I ../commons -I ../commons/ocamlextra -I ../commons/ocollection \
b1b2de81 41 -I ../globals -I ../parsing_cocci
34e49164 42
90aeb998
C
43INCLUDES=$(INCLUDESDEP) $(TARZANINCLUDE)
44
708f4980 45SYSLIBS= str.cma unix.cma num.cma
34e49164
C
46
47##############################################################################
48# Generic variables
49##############################################################################
50
b1b2de81 51#for warning: -w A
34e49164 52#for profiling: -p -inline 0 with OCAMLOPT
755320b0
C
53OCAMLCFLAGS ?= -g
54OPTFLAGS ?= -g
34e49164 55
755320b0
C
56OCAMLC_CMD=$(OCAMLC) $(OCAMLCFLAGS) $(INCLUDES)
57OCAMLOPT_CMD=$(OCAMLOPT) $(OPTFLAGS) $(INCLUDES)
feec80c3
C
58OCAMLDEP_CMD=$(OCAMLDEP) $(INCLUDESDEP)
59OCAMLMKTOP_CMD=$(OCAMLMKTOP) -g -custom $(INCLUDES)
34e49164
C
60
61OBJS = $(SRC:.ml=.cmo)
62OPTOBJS = $(SRC:.ml=.cmx)
63
64
65##############################################################################
66# Top rules
67##############################################################################
68all: $(TARGET).cma
d6ce1786
C
69all.opt:
70 @$(MAKE) $(TARGET).cmxa BUILD_OPT=yes
34e49164
C
71
72$(TARGET).cma: $(OBJS)
feec80c3 73 $(OCAMLC_CMD) -a -o $(TARGET).cma $(OBJS)
34e49164
C
74
75$(TARGET).cmxa: $(OPTOBJS) $(LIBS:.cma=.cmxa)
feec80c3 76 $(OCAMLOPT_CMD) -a -o $(TARGET).cmxa $(OPTOBJS)
34e49164
C
77
78$(TARGET).top: $(OBJS) $(LIBS)
feec80c3 79 $(OCAMLMKTOP_CMD) -o $(TARGET).top $(SYSLIBS) $(LIBS) $(OBJS)
34e49164
C
80
81clean::
82 rm -f $(TARGET).top
83
34e49164
C
84lexer_c.ml: lexer_c.mll
85 $(OCAMLLEX) $<
86clean::
87 rm -f lexer_c.ml
34e49164
C
88
89parser_c.ml parser_c.mli: parser_c.mly
feec80c3 90 $(OCAMLYACC) -v $<
34e49164
C
91clean::
92 rm -f parser_c.ml parser_c.mli parser_c.output
34e49164
C
93
94
485bce71
C
95##############################################################################
96# Pad's rules
97##############################################################################
98# visitor_c.ml lib_parsing_c.ml \
99# type_annoter_c.ml \
100# statistics_c.ml \
101# pretty_print_c.ml unparse_c.ml \
102# test_parsing_c.ml
103#toreput: compare_c.ml ast_to_flow.ml
104
105COREPARSING= flag_parsing_c.ml parsing_stat.ml \
106 ast_cocci.ml \
107 ast_c.ml control_flow_c.ml \
108 semantic_c.ml lexer_parser.ml parser_c.mly lexer_c.mll \
109 token_helpers.ml parsing_hacks.ml parse_c.ml \
110
111locparsing:
112 wc -l $(COREPARSING)
113
114locindiv:
115 wc -l lexer_c.mll
116 wc -l parser_c.mly
117 wc -l parsing_hacks.ml
118 wc -l ast_c.ml
119 wc -l parse_c.ml
120
978fd7e5
C
121##############################################################################
122# Literate Programming rules
123##############################################################################
124
485bce71 125
34e49164
C
126##############################################################################
127# Generic rules
128##############################################################################
129
130.SUFFIXES: .ml .mli .cmo .cmi .cmx
131
132.ml.cmo:
feec80c3 133 $(OCAMLC_CMD) -c $<
34e49164 134.mli.cmi:
feec80c3 135 $(OCAMLC_CMD) -c $<
34e49164 136.ml.cmx:
feec80c3 137 $(OCAMLOPT_CMD) -c $<
34e49164 138
34e49164
C
139clean::
140 rm -f *.cm[ioxa] *.o *.a *.cmxa *.annot
34e49164 141 rm -f *~ .*~ gmon.out #*#
b1b2de81
C
142 rm -f .depend
143
feec80c3 144distclean: clean
708f4980 145
feec80c3
C
146.depend depend: lexer_c.ml parser_c.ml parser_c.mli
147 $(OCAMLDEP_CMD) *.mli *.ml > .depend
34e49164 148
feec80c3
C
149ifneq ($(MAKECMDGOALS),clean)
150ifneq ($(MAKECMDGOALS),distclean)
34e49164 151-include .depend
feec80c3
C
152endif
153endif
d6ce1786
C
154
155include ../Makefile.common