Updated README.md

This commit is contained in:
Glenn Y. Rolland 2013-02-23 14:43:53 -08:00
parent de65e71215
commit 9c0fc97de7
1 changed files with 34 additions and 0 deletions

View File

@ -3,3 +3,37 @@ ocaml-meka
A handy Makefile for OCaml projects
Usage example :
# list of created binaries
PROGRAMS=dow
# program-specific list of objects
dow_OBJS= \
GuiHttp \
Storage \
StorageFile \
StorageSqlite3 \
WikiHandler \
WikiHandlerEdit \
WikiHandlerView \
WikiEngine \
HttpTypes \
HttpRequest \
HttpAnswer \
HttpHandler \
Http \
Document \
Main
# program-specific includes
dow_INCS=-I +lablgtk2
# program-specific libraries
dow_LIBS=unix threads lablgtk
# global options (used for everything in PROGRAMS)
OPTS=-w A -warn-error A -g -thread
# The most important line ;-)
include OCaml.mk