Added example makefile (from the 'dow' project).

This commit is contained in:
Glenn Y. Rolland 2012-07-17 03:09:04 +02:00
parent f3702979f6
commit be253f2018
1 changed files with 36 additions and 0 deletions

36
examples/Makefile Normal file
View File

@ -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