build: Get 'make install' working.
[goaljobs.git] / examples / compile-c / 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 EXTRA_DIST = main.c utils.c $(sources)
21
22 CLEANFILES += compile program
23
24 sources = compile.ml
25
26 noinst_SCRIPTS = compile
27
28 compile: ../../goaljobs.cmxa compile.cmx
29         $(OCAMLFIND) ocamlopt $(OCAMLOPTFLAGS) \
30             $(OCAMLOPTPACKAGES) -linkpkg $^ -o $@
31
32 compile.cmx: compile.ml ../../pa_goal.cmo
33         OCAMLPATH=$(abs_top_builddir) \
34         $(OCAMLFIND) ocamlopt $(OCAMLOPTFLAGS) $(OCAMLOPTPACKAGES) \
35             -pp "$(CAMLP4O) ../../pa_goal.cmo" -c $< -o $@
36
37 # Dependencies.
38
39 depend: .depend
40
41 .depend: $(sources)
42         rm -f $@ $@-t
43         $(OCAMLFIND) ocamldep -I $(abs_srcdir) -I $(top_builddir) $^ | \
44           $(SED) 's/ *$$//' | \
45           $(SED) -e :a -e '/ *\\$$/N; s/ *\\\n */ /; ta' | \
46           $(SED) -e 's,$(abs_srcdir)/,$(builddir)/,g' | \
47           sort > $@-t
48         mv $@-t $@
49
50 -include .depend