967cfd0ba576b42fe3dfa8369ae350786f740928
[whenjobs.git] / lib / Makefile.am
1 # whenjobs
2 # Copyright (C) 2012 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 EXTRA_DIST = whenproto.x pa_when.ml $(SOURCES)
19
20 libwhenjobsdir = $(libdir)/$(PACKAGE_NAME)
21 libwhenjobs_SCRIPTS = whenlib.cma pa_when.cmo $(CMI_FILES)
22
23 OCAMLPACKAGES = -package unix,num,camlp4.lib,calendar,rpc
24
25 OCAMLCFLAGS = -g -warn-error CDEFLMPSUVYZX $(OCAMLPACKAGES)
26 OCAMLOPTFLAGS = $(OCAMLCFLAGS)
27
28 # These should be in alphabetical order. 
29 SOURCES = \
30         config.ml \
31         config.mli \
32         whenexpr.ml \
33         whenexpr.mli \
34         whenfile.ml \
35         whenfile.mli \
36         whenlock.ml \
37         whenlock.mli \
38         whenproto_aux.ml \
39         whenproto_aux.mli \
40         whenutils.mli \
41         whenutils.ml
42
43 # In alphabetical order.
44 CMI_FILES = \
45         config.cmi \
46         whenexpr.cmi
47         whenfile.cmi \
48         whenlock.cmi \
49         whenproto_aux.cmi \
50         whenutils.cmi
51
52 # In dependency order.
53 OBJECTS = \
54         config.cmo \
55         whenproto_aux.cmo \
56         whenutils.cmo \
57         whenexpr.cmo \
58         whenfile.cmo \
59         whenlock.cmo
60
61 # Library.
62 noinst_LIBRARIES = liblibrary.a
63 liblibrary_a_SOURCES = flock.c
64 liblibrary_a_CFLAGS = -I$(shell $(OCAMLC) -where)
65
66 whenlib.cma: $(OBJECTS) liblibrary.a
67         $(OCAMLFIND) c -a $(OCAMLCFLAGS) $(OBJECTS) -cclib -llibrary -o $@
68
69 whenproto_aux.ml whenproto_aux.mli: whenproto.x
70         $(OCAMLRPCGEN) -int int32 -hyper int64 -aux $<
71
72 # Preprocessor for whenjobs files.
73 # Note that we intentionally don't want this to depend on any
74 # libraries except for camlp4.lib.
75 pa_when.cmo: pa_when.ml
76         $(OCAMLFIND) c -g -warn-error CDEFLMPSUVYZX \
77           -package camlp4.lib -linkpkg \
78           -pp $(CAMLP4OF) -c $< -o $@
79
80 # Rules for all OCaml files.
81 %.cmi: %.mli
82         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) -c $< -o $@
83 %.cmo: %.ml
84         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) -c $< -o $@
85 %.cmx: %.ml
86         $(OCAMLFIND) ocamlopt $(OCAMLOPTFLAGS) -c $< -o $@
87
88 SUFFIXES = .cmo .cmi .cmx .ml .mli .mll .mly
89
90 # OCaml dependencies.
91 depend: .depend
92
93 .depend: $(SOURCES)
94         rm -f $@ $@-t
95         $(OCAMLFIND) ocamldep $^ | \
96           $(SED) -e 's/ *$$//' | \
97           $(SED) -e :a -e '/ *\\$$/N; s/ *\\\n */ /; ta' | \
98           LANG=C sort > $@-t
99         mv $@-t $@
100
101 -include .depend
102
103 CLEANFILES = \
104         *.cmi *.cmo *.cmx *.cma *.cmxa *~ \
105         config.ml whenproto_aux.ml whenproto_aux.mli