From be253f2018453bf5a25388f94e853d279b3a057c Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Tue, 17 Jul 2012 03:09:04 +0200 Subject: [PATCH] Added example makefile (from the 'dow' project). --- examples/Makefile | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 examples/Makefile diff --git a/examples/Makefile b/examples/Makefile new file mode 100644 index 0000000..ad7aa41 --- /dev/null +++ b/examples/Makefile @@ -0,0 +1,36 @@ +# +# Example makefile for use with OCaml-Meka +# + +# Program name +PROGRAMS=dow + +# Program modules +dow_OBJS= \ + GuiHttp \ + Storage \ + StorageFile \ + StorageSqlite3 \ + WikiHandler \ + WikiHandlerEdit \ + WikiHandlerView \ + WikiEngine \ + HttpTypes \ + HttpRequest \ + HttpAnswer \ + HttpHandler \ + Http \ + Document \ + Main + +# local options to use for program +dow_INCS=-I +lablgtk2 +dow_LIBS=unix threads lablgtk + +# Global Ocaml options to use +OCAML_LIBS= +OCAML_INCS= +OCAML_OPTS=-w A -warn-error A -g -thread + +include OCaml.mk +