Updated README.md
This commit is contained in:
parent
de65e71215
commit
9c0fc97de7
1 changed files with 34 additions and 0 deletions
34
README.md
34
README.md
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue