Missing backslash broke dependency file.
[wrappi.git] / generator-lib / Makefile.am
1 # wrappi
2 # Copyright (C) 2011 Red Hat Inc.
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
18 OCAMLCFLAGS = -g -warn-error CDEFLMPSUVYZX -I +camlp4
19 OCAMLOPTFLAGS = $(OCAMLCFLAGS)
20
21 # In alphabetical order.
22 SOURCES = \
23         config.ml \
24         wrappi_globals.mli \
25         wrappi_globals.ml \
26         wrappi_types.mli \
27         wrappi_types.ml
28
29 # In dependency order.
30 OBJECTS = \
31         config.cmo \
32         wrappi_types.cmo \
33         wrappi_globals.cmo
34
35 noinst_SCRIPTS = generator_lib.cma
36
37 generator_lib.cma: $(OBJECTS)
38         $(OCAMLFIND) ocamlc -a $^ -o generator_lib.cma
39
40 %.cmi: %.mli
41         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) -c $< -o $@
42 %.cmo: %.ml
43         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) -c $< -o $@
44 %.cmx: %.ml
45         $(OCAMLFIND) ocamlopt $(OCAMLOPTFLAGS) -c $< -o $@
46
47 CLEANFILES = *.cmi *.cmo *.cmx *.cma *.cmxa *~
48
49 depend: .depend
50
51 .depend: $(SOURCES)
52         rm -f $@ $@-t
53         $(OCAMLFIND) ocamldep $^ | \
54           $(SED) -e 's/ *$$//' | \
55           $(SED) -e :a -e '/ *\\$$/N; s/ *\\\n */ /; ta' | \
56           LANG=C sort > $@-t
57         mv $@-t $@
58
59 include .depend
60
61 SUFFIXES = .cmo .cmi .cmx .ml .mli .mll .mly