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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
# Makefile,v
TOP=..
include ../config/Makefile
VERSSDIR=.$(VERSDIR)/$(OVERSION)
all:
cd $(VERSSDIR)/utils; \
$(MAKE) all EXE=$(EXE) OCAMLN=$(OCAMLN)
opt:
cd $(VERSSDIR)/utils; $(MAKE) OCAMLN=$(OCAMLN) opt; cd ../..
clean:
cd $(VERSSDIR)/utils; \
$(MAKE) clean EXE=$(EXE)
depend:
cd $(VERSSDIR)/utils; \
$(MAKE) depend
steal:
$(NOVERBOSE) if test "$(OCAML_SRC)" = ""; then \
echo "usage: $(MAKE) steal OCAML_SRC=..."; exit 1; \
fi
$(NOVERBOSE) $(MAKE) real_steal OCAML_SRC="$$(cd ..; cd $(OCAML_SRC); pwd)"
real_steal:
mkdir -p "$(VERSSDIR)"
cd "$(VERSSDIR)"; mkdir -p utils parsing
cp common/utils/pconfig.mli $(VERSSDIR)/utils/.
sed 's/\$$Id.*\$$/Id/' common/utils/Makefile > \
$(VERSSDIR)/utils/Makefile
cp common/utils/.gitignore $(VERSSDIR)/utils/.
cp common/utils/.depend $(VERSSDIR)/utils/.
sed 's/\$$Id.*\$$/Id/' common/parsing/Makefile > \
$(VERSSDIR)/parsing/Makefile
cp common/parsing/.gitignore $(VERSSDIR)/parsing/.
cp common/parsing/.depend $(VERSSDIR)/parsing/.
(grep -h "and ast_.*_magic_number" $(OCAML_SRC)/utils/config.mlp $(OCAML_SRC)/utils/config.common.ml | \
sed -e 's/^and/let/') > $(VERSSDIR)/utils/pconfig.ml
$(MAKE) copy_steal FILE=utils/warnings.mli
$(MAKE) copy_steal FILE=parsing/asttypes.mli
$(MAKE) copy_steal FILE=parsing/location.mli
$(MAKE) copy_steal FILE=parsing/longident.mli
$(MAKE) copy_steal FILE=parsing/parsetree.mli
copy_steal:
if [ -f "$(OCAML_SRC)/$(FILE)" ]; then \
sed 's/\$$Id.*\$$/Id/' $(OCAML_SRC)/$(FILE); \
fi > $(VERSSDIR)/$(FILE)
compare_stolen:
@if test "$(OCAML_SRC)" = ""; then \
echo "usage: make compare_stolen OCAML_SRC=..."; exit 1; \
fi
$(MAKE) real_compare_stolen OCAML_SRC="$$(cd ..; cd $(OCAML_SRC); pwd)"
real_compare_stolen:
@echo =================================================
@echo warnings.mli
@if [ -f "$(OCAML_SRC)/utils/warnings.mli" ]; then \
sed 's/\$$Id.*\$$/Id/' $(OCAML_SRC)/utils/warnings.mli | \
diff $(VERSSDIR)/utils/warnings.mli -; exit 0; fi
@echo =================================================
@echo pconfig.ml
@(grep "and ast_.*_magic_number" $(OCAML_SRC)/utils/config.mlp) | \
sed -e 's/^and/let/' | diff $(VERSSDIR)/utils/pconfig.ml -; exit 0
@echo =================================================
@echo asttypes.mli
@sed 's/\$$Id.*\$$/Id/' $(OCAML_SRC)/parsing/asttypes.mli | \
diff $(VERSSDIR)/parsing/asttypes.mli -; exit 0
@echo =================================================
@echo location.mli
@sed 's/\$$Id.*\$$/Id/' $(OCAML_SRC)/parsing/location.mli | \
diff $(VERSSDIR)/parsing/location.mli -; exit 0
@echo =================================================
@echo longident.mli
@sed 's/\$$Id.*\$$/Id/' $(OCAML_SRC)/parsing/longident.mli | \
diff $(VERSSDIR)/parsing/longident.mli -; exit 0
@echo =================================================
@echo parsetree.mli
@sed 's/\$$Id.*\$$/Id/' $(OCAML_SRC)/parsing/parsetree.mli | \
diff $(VERSSDIR)/parsing/parsetree.mli -; exit 0
|