First published version.
[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 include common-rules.mk
19
20 ACLOCAL_AMFLAGS = -I m4
21
22 EXTRA_DIST = \
23         COPYING \
24         NOTES \
25         README \
26         $(sources)
27
28 SUBDIRS = . examples tests
29
30 sources = \
31         goaljobs.ml \
32         goaljobs.mli
33
34 noinst_SCRIPTS = goaljobs.cmxa pa_goal.cmo
35
36 # Library.
37 goaljobs.cmxa: goaljobs.cmx
38         $(OCAMLFIND) ocamlopt -a -o $@ $(OCAMLOPTFLAGS) $(OCAMLOPTPACKAGES) $<
39
40 # Preprocessor for goaljobs scripts.
41 pa_goal.cmo: pa_goal.ml
42         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) -package camlp4.lib -linkpkg \
43             -pp $(CAMLP4OF) -c $< -o $@
44
45 # Dependencies.
46
47 depend: .depend
48
49 .depend: $(sources)
50         rm -f $@ $@-t
51         $(OCAMLFIND) ocamldep -I $(abs_srcdir) $^ | \
52           $(SED) 's/ *$$//' | \
53           $(SED) -e :a -e '/ *\\$$/N; s/ *\\\n */ /; ta' | \
54           $(SED) -e 's,$(abs_srcdir)/,$(builddir)/,g' | \
55           sort > $@-t
56         mv $@-t $@
57
58 -include .depend
59
60 SUFFIXES = .cmo .cmi .cmx .ml .mli .mll .mly
61
62 # License check.
63
64 licensecheck:
65         licensecheck $$(git ls-files)