File: Makefile

package info (click to toggle)
ounit 1.0.3-5
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 184 kB
  • ctags: 139
  • sloc: ml: 607; xml: 190; makefile: 88
file content (11 lines) | stat: -rw-r--r-- 239 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
# 
# 

TESTS = test_list.ml test_list2.ml test_stack.ml

test: test_suite
	./test_suite

test_suite: $(TESTS) test_suite.ml
	ocamlfind ocamlc -o test_suite -package oUnit -linkpkg \
	test_list.ml test_list2.ml test_stack.ml test_suite.ml