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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
|
## --*- Makefile -*--
## Make listed targets even in case a file with same name exists.
.PHONY: \
this \
all clean install test distclean \
this-all this-clean this-install this-test this-distclean \
all-this clean-this install-this test-this distclean-this \
$(eof)
## delete suffix rules - shortens output when using -d and is not
## used anyway (and should not be used).
.SUFFIXES:
Makefile :: @abs_top_srcdir@/$(subdir)/Makefile.in \
@abs_this_builddir@/scripts/config.deps \
@abs_this_builddir@/scripts/config.make \
@abs_this_builddir@/scripts/config.vars \
@abs_this_builddir@/config.status
@echo "*** update $(subdir)/Makefile"
@cd @abs_this_builddir@ && CONFIG_FILES="$(subdir)/Makefile" @SHELL@ ./config.status -q
@abs_this_builddir@/scripts/config.deps : \
@abs_top_srcdir@/scripts/config.deps.in
@echo "*** update $@"
@cd @abs_this_builddir@ && CONFIG_FILES=scripts/config.deps @SHELL@ ./config.status -q
@abs_this_builddir@/scripts/config.make : \
@abs_top_srcdir@/scripts/config.make.in
@echo "*** update $@"
@cd @abs_this_builddir@ && CONFIG_FILES=scripts/config.make @SHELL@ ./config.status -q
@abs_this_builddir@/scripts/config.vars : \
@abs_top_srcdir@/scripts/config.vars.in
@echo "*** update $@"
@cd @abs_this_builddir@ && CONFIG_FILES=scripts/config.vars @SHELL@ ./config.status -q
@abs_this_builddir@/config.status : \
@abs_top_srcdir@/configure
@echo "*** reconfigure $@ - stay tuned .."
@cd @abs_this_builddir@ && @SHELL@ ./config.status -q --recheck
@echo "*** update all configured files .."
@cd @abs_this_builddir@ && @SHELL@ ./config.status -q
### In a pure devel mode there should be also a dependency listed on how
### to make configure out of configure.in. This requires that usr has
### m4 and autoconf (proper version) installed. Appropriate checks are
### not done in configure. If so, then uncomment next lines:
###
### @rule_configure_configure_in@
###
@abs_this_builddir@/scripts/antlr.sh : \
@abs_top_srcdir@/scripts/antlr.sh.in
@echo "*** update $@"
@cd @abs_this_builddir@ && CONFIG_FILES=scripts/antlr.sh @SHELL@ ./config.status -q
@abs_this_builddir@/scripts/cpp.sh : \
@abs_top_srcdir@/scripts/cpp.sh.in
@echo "*** update $@"
@cd @abs_this_builddir@ && CONFIG_FILES=scripts/cpp.sh @SHELL@ ./config.status -q
@abs_this_builddir@/scripts/csc.sh : \
@abs_top_srcdir@/scripts/csc.sh.in
@echo "*** update $@"
@cd @abs_this_builddir@ && CONFIG_FILES=scripts/csc.sh @SHELL@ ./config.status -q
@abs_this_builddir@/scripts/cxx.sh : \
@abs_top_srcdir@/scripts/cxx.sh.in
@echo "*** update $@"
@cd @abs_this_builddir@ && CONFIG_FILES=scripts/cxx.sh @SHELL@ ./config.status -q
@abs_this_builddir@/scripts/jar.sh : \
@abs_top_srcdir@/scripts/jar.sh.in
@echo "*** update $@"
@cd @abs_this_builddir@ && CONFIG_FILES=scripts/jar.sh @SHELL@ ./config.status -q
@abs_this_builddir@/scripts/javac.sh : \
@abs_top_srcdir@/scripts/javac.sh.in
@echo "*** update $@"
@cd @abs_this_builddir@ && CONFIG_FILES=scripts/javac.sh @SHELL@ ./config.status -q
@abs_this_builddir@/scripts/java.sh : \
@abs_top_srcdir@/scripts/java.sh.in
@echo "*** update $@"
@cd @abs_this_builddir@ && CONFIG_FILES=scripts/java.sh @SHELL@ ./config.status -q
@abs_this_builddir@/scripts/lib.sh : \
@abs_top_srcdir@/scripts/lib.sh.in
@echo "*** update $@"
@cd @abs_this_builddir@ && CONFIG_FILES=scripts/lib.sh @SHELL@ ./config.status -q
@abs_this_builddir@/scripts/link.sh : \
@abs_top_srcdir@/scripts/link.sh.in
@echo "*** update $@"
@cd @abs_this_builddir@ && CONFIG_FILES=scripts/link.sh @SHELL@ ./config.status -q
@abs_this_builddir@/scripts/pyinst.sh : \
@abs_top_srcdir@/scripts/pyinst.sh.in
@echo "*** update $@"
@cd @abs_this_builddir@ && CONFIG_FILES=scripts/pyinst.sh @SHELL@ ./config.status -q
@abs_this_builddir@/scripts/python.sh : \
@abs_top_srcdir@/scripts/python.sh.in
@echo "*** update $@"
@cd @abs_this_builddir@ && CONFIG_FILES=scripts/python.sh @SHELL@ ./config.status -q
## This rule shall ensure that ANTLR_NET is up-to-date. The rule is a
## double colon rule, ie. further rules with the same target may be
## added. For unknown reasons, double colon rules are always phony,ie.
## getting executed even in case target exists. We break the infinite
## loop, we only jump into subdir "lib/csharp/src" if we are not
## already in. It is very important that each Makefile[.in] sets the
## variable $(subdir) proper.
@ANTLR_NET@ ::
@ subdir="lib/csharp/antlr.runtime" ; \
case $(subdir) in \
$$subdir ) ;; \
* ) d="@abs_this_builddir@/$$subdir" ; \
test -f "$$d/Makefile" && { \
@MAKE@ -C "$$d" $@ ; \
} \
;; \
esac
@ASTFRAME_NET@ ::
@ subdir="lib/csharp/antlr.astframe" ; \
case $(subdir) in \
$$subdir ) ;; \
* ) d="@abs_this_builddir@/$$subdir" ; \
test -f "$$d/Makefile" && { \
@MAKE@ -C "$$d" $@ ; \
} \
;; \
esac
@ANTLR_JAR@ ::
@ subdir="antlr" ; \
case $(subdir) in \
$$subdir ) ;; \
* ) d="@abs_this_builddir@/$$subdir" ; \
test -f "$$d/Makefile" && { \
@MAKE@ -C "$$d" $@ ; \
} \
;; \
esac
@ANTLR_LIB@ ::
@ subdir="lib/cpp/src" ; \
case $(subdir) in \
$$subdir ) ;; \
* ) d="@abs_this_builddir@/$$subdir" ; \
test -f "$$d/Makefile" && { \
@MAKE@ -C "$$d" $@ ; \
} \
;; \
esac
|