Skip to content
Snippets Groups Projects
Makefile 672 B
Newer Older
Erwan Jahier's avatar
Erwan Jahier committed

all:build
build: setup.data src/lv6version.ml
	ocaml setup.ml -build          
setup.ml:_oasis
	oasis setup
PROF=--enable-profile
PROF=--disable-profile
	ocaml setup.ml -configure $(PROF)  --prefix $(LUSTREV6_PATH) --exec-prefix $(LUSTREV6_PATH)/$(HOSTTYPE)
install:
	ocaml setup.ml -install
Pascal Raymond's avatar
Pascal Raymond committed

uninstall:
	ocaml setup.ml -uninstall
Pascal Raymond's avatar
Pascal Raymond committed

reinstall:
	ocaml setup.ml -reinstall
Pascal Raymond's avatar
Pascal Raymond committed

clean:
	ocaml setup.ml -clean
	rm setup.data
Pascal Raymond's avatar
Pascal Raymond committed

distclean:
	ocaml setup.ml -distclean
Pascal Raymond's avatar
Pascal Raymond committed

# for developpers
include ./Makefile.dev