File: Makefile

package info (click to toggle)
pxp 1.2.9-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 7,788 kB
  • sloc: ml: 28,666; xml: 2,597; makefile: 822; sh: 691
file content (16 lines) | stat: -rw-r--r-- 281 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
all: test_lex_utf8

# OCAMLPATH=../../gensrc:../../src


test_lex_utf8: test_lex_utf8.ml
	ocamlfind ocamlc -o test_lex_utf8.cma -a -package pxp-lex-utf8 \
		test_lex_utf8.ml
	../create-wrapper test_lex_utf8

clean:
	rm -rf test_lex_utf8 *.cmo *.cmi

CLEAN: clean

distclean: clean