blob: 9f66e4a2bcc17b2ef5a09e506b8d5a96728050b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# OCAMLC = ocamlcp -p a
OCAMLBCFLAGS = -w A
YFLAGS = -v
TRASH = parser.output TAGS
RESULT = perl_checker
BCSUFFIX = _debug
SOURCES = common.ml types.mli info.ml parser_helper.ml parser.mly lexer.mll perl_checker.ml
LIBS = unix
NAME = shyant
default: TAGS debug-code native-code
tags:
ocamltags *.ml
TAGS:
ocamltags *.ml
-include OCamlMakefile
|