File: Makefile

package info (click to toggle)
pxp 1.1.95-6
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 5,932 kB
  • ctags: 2,025
  • sloc: ml: 21,026; xml: 2,597; makefile: 752; sh: 727
file content (27 lines) | stat: -rw-r--r-- 721 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# make test_negative:   make bytecode executable
# make clean: 		remove intermediate files (in this directory)
# make CLEAN:           remove intermediate files (recursively)
# make distclean: 	remove any superflous files (recursively)
#----------------------------------------------------------------------

test_negative: test_negative.ml
	ocamlfind ocamlc -g -a -o test_negative.cma -package pxp,str test_negative.ml
	../create-wrapper test_negative

#----------------------------------------------------------------------
.PHONY: all
all:

.PHONY: clean
clean:
	rm -f *.cmi *.cmo *.cma *.cmx *.o *.a *.cmxa current.out
	rm -f test_negative 

.PHONY: CLEAN
CLEAN: clean

.PHONY: distclean
distclean: clean
	rm -f *~