X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2FDEVEL%2Fpxp%2Fpxp%2Fcompatibility%2FMakefile;fp=helm%2FDEVEL%2Fpxp%2Fpxp%2Fcompatibility%2FMakefile;h=187116ccb36aa3d9c5032a6fb4b01b529e2e3999;hb=c03d2c1fdab8d228cb88aaba5ca0f556318bebc5;hp=0000000000000000000000000000000000000000;hpb=758057e85325f94cd88583feb1fdf6b038e35055;p=helm.git diff --git a/helm/DEVEL/pxp/pxp/compatibility/Makefile b/helm/DEVEL/pxp/pxp/compatibility/Makefile new file mode 100644 index 000000000..187116ccb --- /dev/null +++ b/helm/DEVEL/pxp/pxp/compatibility/Makefile @@ -0,0 +1,40 @@ +# make all: make bytecode archive +# make opt: make native archive +# make install: install bytecode archive, and if present, native archive +# make uninstall: uninstall package +# make clean: remove intermediate files (in this directory) +# make CLEAN: remove intermediate files (recursively) +# make distclean: remove any superflous files (recursively) + +#---------------------------------------------------------------------- + +include Makefile.conf + +.PHONY: all +all: + $(MAKE) -f Makefile.code all + +.PHONY: opt +opt: + $(MAKE) -f Makefile.code opt + +.PHONY: install +install: all + files=`../tools/collect_files *.cmi *.cma *.cmxa *.a` && \ + ocamlfind install $(NAME) $(MLI) $$files META + +.PHONY: uninstall +uninstall: + ocamlfind remove $(NAME) + +.PHONY: clean +clean: + rm -f *.cmi *.cmo *.cma *.cmx *.o *.a *.cmxa *.new *.old + +.PHONY: CLEAN +CLEAN: clean + +.PHONY: distclean +distclean: clean + rm -f *~ depend depend.pkg +