# whenjobs # Copyright (C) 2012 Red Hat Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. EXTRA_DIST = $(SOURCES) whenjobs.pod bin_SCRIPTS = whenjobs OCAMLPACKAGES = -package unix,num,camlp4.lib,calendar,rpc -I ../lib OCAMLCFLAGS = -g -warn-error CDEFLMPSUVYZX $(OCAMLPACKAGES) OCAMLOPTFLAGS = $(OCAMLCFLAGS) # These should be in alphabetical order. SOURCES = \ libdir.ml \ tutorial.ml \ whenproto_clnt.ml \ whenproto_clnt.mli \ whenjobs.ml # In dependency order. OBJECTS = \ libdir.cmo \ tutorial.cmo \ whenproto_clnt.cmo \ whenjobs.cmo libdir.ml: Makefile rm -f $@ $@-t echo 'let libdir = "$(libdir)/$(PACKAGE_NAME)"' > $@-t mv $@-t $@ whenproto_clnt.ml whenproto_clnt.mli: whenproto.x $(OCAMLRPCGEN) -int int32 -hyper int64 -clnt $< whenproto.x: ../lib/whenproto.x ln -f $< $@ whenjobs: ../lib/whenlib.cma $(OBJECTS) $(OCAMLFIND) ocamlc -custom $(OCAMLCFLAGS) -ccopt -L../lib \ -linkpkg whenlib.cma $(OBJECTS) -o $@ # Rules for all OCaml files. %.cmi: %.mli ../lib/whenlib.cma $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) -c $< -o $@ %.cmo: %.ml ../lib/whenlib.cma $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) -c $< -o $@ %.cmx: %.ml ../lib/whenlib.cma $(OCAMLFIND) ocamlopt $(OCAMLOPTFLAGS) -c $< -o $@ SUFFIXES = .cmo .cmi .cmx .ml .mli .mll .mly # OCaml dependencies. depend: .depend .depend: $(SOURCES) rm -f $@ $@-t $(OCAMLFIND) ocamldep $^ | \ $(SED) -e 's/ *$$//' | \ $(SED) -e :a -e '/ *\\$$/N; s/ *\\\n */ /; ta' | \ LANG=C sort > $@-t mv $@-t $@ -include .depend # Manual page. man_MANS = whenjobs.1 whenjobs.1: whenjobs.pod pod2man \ -c "Job scheduling" \ --release "$(PACKAGE)-$(VERSION)" \ --section 1 \ --stderr --utf8 \ $< > $@ whenjobs.txt: whenjobs.pod pod2text \ --stderr --utf8 \ $< > $@ CLEANFILES = \ *.cmi *.cmo *.cmx *.cma *.cmxa *~ \ libdir.ml \ whenproto.x \ whenproto_clnt.ml whenproto_clnt.mli \ whenjobs