11997d7354a64acd27e05950dae018a0d1f92210
[goaljobs.git] / Makefile.am
1 # goaljobs
2 # Copyright (C) 2013 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 ACLOCAL_AMFLAGS = -I m4
19
20 EXTRA_DIST = \
21         COPYING \
22         NOTES \
23         README \
24         $(sources)
25
26 CLEANFILES = *~
27
28 OCAMLCFLAGS = -g -package unix
29 OCAMLOPTFLAGS = $(OCAMLCFLAGS)
30
31 SUBDIRS = . examples tests
32
33 sources = \
34         test.ml \
35         goaljobs.ml \
36         goaljobs.mli
37
38 noinst_SCRIPTS = test
39
40 test: goaljobs.cmx
41         $(OCAMLFIND) ocamlopt $(OCAMLOPTFLAGS) $< -o $@
42
43 # Dependencies.
44
45 %.cmi: %.mli
46         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) -c $< -o $@
47 %.cmo: %.ml
48         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) -c $< -o $@
49 %.cmx: %.ml
50         $(OCAMLFIND) ocamlopt $(OCAMLOPTFLAGS) -c $< -o $@
51
52 depend: .depend
53
54 .depend: $(wildcard $(abs_srcdir)/*.mli) $(wildcard $(abs_srcdir)/*.ml)
55         rm -f $@ $@-t
56         $(OCAMLFIND) ocamldep -I $(abs_srcdir) $^ | \
57           $(SED) 's/ *$$//' | \
58           $(SED) -e :a -e '/ *\\$$/N; s/ *\\\n */ /; ta' | \
59           $(SED) -e 's,$(abs_srcdir)/,$(builddir)/,g' | \
60           sort > $@-t
61         mv $@-t $@
62
63 -include .depend
64
65 SUFFIXES = .cmo .cmi .cmx .ml .mli .mll .mly
66
67 # License check.
68
69 licensecheck:
70         licensecheck $$(git ls-files)