File: Makefile

package info (click to toggle)
ocaml-cpu 2.0.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 300 kB
  • sloc: ansic: 59; makefile: 22; sh: 4; ml: 2
file content (23 lines) | stat: -rw-r--r-- 373 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
.PHONY: build clean edit install uninstall reinstall

build:
	autoconf
	autoheader
	./configure
	dune build @install -j `getconf _NPROCESSORS_ONLN`

clean:
	dune clean
	rm -rf autom4te.cache/ configure config.log config.status \
		src/config.h src/config.h.in

edit:
	emacs src/*.ml &

install: build
	dune install

uninstall:
	dune uninstall

reinstall: uninstall install