X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2FDEVEL%2Fpxp%2Fpxp%2Fexamples%2Fxmlforms%2FMakefile;fp=helm%2FDEVEL%2Fpxp%2Fpxp%2Fexamples%2Fxmlforms%2FMakefile;h=5a0ba32b356224638faf9e2d97f8a1aed35e6a93;hb=c03d2c1fdab8d228cb88aaba5ca0f556318bebc5;hp=0000000000000000000000000000000000000000;hpb=758057e85325f94cd88583feb1fdf6b038e35055;p=helm.git diff --git a/helm/DEVEL/pxp/pxp/examples/xmlforms/Makefile b/helm/DEVEL/pxp/pxp/examples/xmlforms/Makefile new file mode 100644 index 000000000..5a0ba32b3 --- /dev/null +++ b/helm/DEVEL/pxp/pxp/examples/xmlforms/Makefile @@ -0,0 +1,33 @@ +# make xmlforms: make bytecode executable +# make xmlforms.opt: make native executable +# make clean: remove intermediate files +# make CLEAN: remove intermediate files (recursively) +# make distclean: remove any superflous files +# make release: cleanup, create archive, tag CVS module +# (for developers) +#---------------------------------------------------------------------- + +.PHONY: xmlforms +xmlforms: + $(MAKE) -f Makefile.code xmlforms + +.PHONY: xmlforms.opt +xmlforms.opt: + $(MAKE) -f Makefile.code xmlforms.opt + + +.PHONY: clean +clean: + rm -f *.cmi *.cmo *.cma *.cmx *.o *.a *.cmxa + +.PHONY: CLEAN +CLEAN: clean + $(MAKE) -C styles CLEAN + +.PHONY: distclean +distclean: clean + rm -f *~ depend depend.pkg + rm -f xmlforms xmlforms.opt + $(MAKE) -C styles distclean + +