Added example makefile (from the 'dow' project).
This commit is contained in:
parent
f3702979f6
commit
be253f2018
1 changed files with 36 additions and 0 deletions
36
examples/Makefile
Normal file
36
examples/Makefile
Normal 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
|
||||||
|
|
Loading…
Reference in a new issue