Skip to content

Commit 3576111

Browse files
committed
src/ directory, up-to-date build scripts
Ignore-this: 75343e0f897fbce1e985951f10f17089 darcs-hash:20090823154108-47e18-a9d4b446a52a7601573d76ee3fa847131225fec4
1 parent e1dd43e commit 3576111

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+36
-24
lines changed

Makefile

Lines changed: 0 additions & 16 deletions
This file was deleted.

README

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ macaque is still a work in progress, please send feedback to
1010
`bluestorm dot dylc (gmail)`. I'm interested in bug reports and
1111
reasonable feature requests.
1212

13-
Usual makefile provided : make, make install, bleh, make uninstall
13+
Usual makefile provided (in src/) : make, make install, bleh, make uninstall
14+
Depends on PG'Ocaml
1415

1516

1617

@@ -619,4 +620,4 @@ very expressive. For example (NULL + 0) will work okay, but :
619620
I have tried to work around those issues, but think some of them are
620621
probably lurking somewhere. It is unfortunate as it undermines Macaque
621622
static safety : these runtime errors are subtle and quite difficult to
622-
prevent. Please report them if you find some. I hope not.
623+
prevent. Please report them if you find some. I hope not.

macaque.mllib

Lines changed: 0 additions & 4 deletions
This file was deleted.

META renamed to src/META

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ package "syntax" (
88
requires = "macaque,camlp4"
99
version = "BETA"
1010
description = "Syntax extension: Comprehension syntax for composable SQL statements"
11-
archive(syntax,preprocessor) = "pa_comp.cmo pa_descr.cmo"
12-
archive(syntax,toploop) = "pa_comp.cmo pa_descr.cmo"
11+
archive(syntax,preprocessor) = "pa_comp.cmo pa_descr.cmo pa_bananas.cmo"
12+
archive(syntax,toploop) = "pa_comp.cmo pa_descr.cmo pa_bananas.cmo"
1313
)

src/Makefile

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
all: macaque.cma pa_comp.cmo pa_descr.cmo pa_bananas.cmo
2+
3+
%.cmo:
4+
ocamlbuild $<
5+
6+
macaque.cma:
7+
ocamlbuild macaque.cma
8+
9+
install:
10+
ocamlfind install macaque META \
11+
_build/sql_base.cmi _build/sql_types.cmi _build/sql_parsers.cmi \
12+
_build/sql_printers.cmi _build/sql_builders.cmi _build/sql_public.cmi \
13+
_build/inner_sql.cmi \
14+
_build/sql.cmi _build/check.cmi _build/query.cmi \
15+
_build/macaque.cma \
16+
_build/pa_comp.cmo _build/pa_descr.cmo _build/pa_bananas.cmo
17+
18+
uninstall:
19+
ocamlfind remove macaque

_tags renamed to src/_tags

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)