source: trunk/yao/share/antlr-2.7.7/examples/cpp/tokenStreamRewrite/Makefile @ 645

Last change on this file since 645 was 645, checked in by eberhartp, 8 years ago

Mise à jour grammaire pour support module linéaire
Mise à jour makefile pour utilisation C++11 (C++14 incompatible)

File size: 18.2 KB
Line 
1##xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
2
3## --*- Makefile -*--
4SUBDIRS         := 
5
6## helper utilities ..
7INSTALL         = /usr/bin/install -c
8MKDIR           = /usr/bin/mkdir
9RM              = /usr/bin/rm -r -f
10RMF             = /usr/bin/rm -r -f
11TAR             = /usr/bin/tar
12TOUCH           = /bin/touch
13CHMOD           = /usr/bin/chmod
14SED             = /usr/bin/sed
15GREP            = /usr/bin/grep
16CAT             = /usr/bin/cat
17CHMOD           = /usr/bin/chmod
18CP              = /bin/cp
19ECHO            = /bin/echo
20
21# usual dribble
22exec_prefix     = ${prefix}
23prefix          = /usr/local
24program_transform_name = s,x,x,
25bindir          = ${exec_prefix}/bin
26sbindir         = ${exec_prefix}/sbin
27libexecdir      = ${exec_prefix}/libexec
28datadir         = ${prefix}/share
29sysconfdir      = ${prefix}/etc
30sharedstatedir  = ${prefix}/com
31localstatedir   = ${prefix}/var
32libdir          = ${exec_prefix}/lib
33includedir      = ${prefix}/include
34oldincludedir   = /usr/include
35infodir         = ${prefix}/info
36mandir          = ${prefix}/man
37build_alias     = 
38host_alias      = 
39target_alias    = 
40build           = x86_64-unknown-linux-gnu
41build_cpu       = x86_64
42build_vendor    = unknown
43build_os        = linux-gnu
44host            = x86_64-unknown-linux-gnu
45host_cpu        = x86_64
46host_vendor     = unknown
47host_os         = linux-gnu
48just_make       = /usr/bin/make
49
50# Version stuff...
51VERSION         = 2
52SUBVERSION      = 7
53PATCHLEVEL      = 7
54PACKAGE_NAME    = antlr
55PACKAGE_VERSION = 2.7.7
56versioneddir    = antlr-2.7.7
57
58# navigation
59builddir        = /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7
60buildtree       = /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7
61sourcetree      = /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/..
62
63## Two abbrevs to shorten things. $(thisdir) shall be the current
64## working  directory  as  absolute  name  and $(_srcdir) is it's
65## source dir companion. That means that  $(thisdir)/Makefile has
66## been generated by $(_srcdir)/Makefile.in.
67_srcdir         = /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../$(subdir)
68thisdir         = /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/$(subdir)
69
70# variable 'srcdir' is deprecated - use sourcetree
71srcdir          = /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/..
72# variable 'objdir' is deprecated - use buildtree
73objdir          = /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7
74
75# other
76verbose         = 0
77
78## SUBDIRS you want to exclude (separate them by using "|").
79SUBDIRS_NOT    := .
80
81CLR            = /usr/bin/mono
82
83ANTLR_JAR      = /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/antlr/antlr.jar
84ANTLR_LIB      = /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/lib/cpp/src/libantlr.a
85ANTLR_NET      = /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/lib/antlr.runtime.dll
86ANTLR_PY       = /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/lib/python/antlr/python.py
87ASTFRAME_NET   = /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/lib/antlr.astframe.dll
88
89antlr_jar      = antlr.jar
90antlr_lib      = libantlr.a
91antlr_net      = antlr.runtime.dll
92antlr_py       = python.py
93astframe_net   = antlr.astframe.dll
94##xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
95
96## do not change this value
97
98subdir=examples/cpp/tokenStreamRewrite
99
100srcdir=/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/examples/cpp/tokenStreamRewrite/../../../examples/cpp/tokenStreamRewrite
101objdir=/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/examples/cpp/tokenStreamRewrite
102
103this : test
104test : test1
105
106
107all: tokenStreamRewrite test
108
109tinyc_g_FILES = \
110        $(srcdir)/tinyc.g \
111        $(eol)
112
113tinyc_g_cxx_FILES = \
114        $(objdir)/TinyCParser.cpp \
115        $(objdir)/TinyCLexer.cpp \
116        $(eol)
117
118tinyc_g_hpp_FILES = \
119        $(objdir)/TinyCParser.hpp \
120        $(objdir)/TinyCParserTokenTypes.hpp \
121        $(objdir)/TinyCTokenTypes.hpp \
122        $(objdir)/TinyCLexer.hpp \
123        $(eol)
124
125tinyc_g_txt_FILES = \
126        $(objdir)/TinyCParserTokenTypes.txt \
127        $(objdir)/TinyCTokenTypes.txt \
128        $(eol)
129
130tinyc_g_gen_FILES = \
131        $(tinyc_g_cxx_FILES) \
132        $(tinyc_g_hpp_FILES) \
133        $(tinyc_g_txt_FILES) \
134        $(eol)
135
136tinyc_g_obj_FILES = \
137        $(objdir)/TinyCParser.o \
138        $(objdir)/TinyCLexer.o \
139        $(eol)
140
141## Source files
142tokenStreamRewrite_cxx_FILES = \
143        $(tinyc_g_cxx_FILES) \
144        $(srcdir)/main.cpp \
145        $(eol)
146
147## Object files
148tokenStreamRewrite_obj_FILES = \
149        $(tinyc_g_obj_FILES) \
150        $(objdir)/main.o \
151        $(eol)
152
153## Test commands
154test1_cmd = $(objdir)/tokenStreamRewrite < $(srcdir)/input.c
155
156## Tests to be executed
157test1: tokenStreamRewrite
158        @ v="$(verbose)"; if test $$v -gt 0 ; then  /bin/echo "$(test1_cmd)" ;  else  /bin/echo "exec test1 .."fi
159        @ $(test1_cmd)
160
161## How to make binaries
162tokenStreamRewrite : $(tokenStreamRewrite_obj_FILES) /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/lib/cpp/src/libantlr.a
163        /bin/sh /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/link.sh $@ $(tokenStreamRewrite_obj_FILES)
164
165## How to compile ANTLR grammar files
166$(objdir)/.tinyc.g : $(srcdir)/tinyc.g /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/antlr/antlr.jar
167        /bin/sh /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/antlr.sh $(srcdir)/tinyc.g
168        $(TOUCH) `echo $(objdir)/.tinyc.g`
169
170$(tinyc_g_gen_FILES): $(objdir)/.tinyc.g
171
172
173## GNU make - how to make object file
174$(objdir)/%.o : $(srcdir)/%.cpp
175        @ /bin/sh /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/cxx.sh $<
176
177## GNU make - how to make object file
178$(objdir)/%.o : $(objdir)/%.cpp
179        @ /bin/sh /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/cxx.sh $<
180
181## GNU make - how to make object file
182%.o : $(srcdir)/%.cpp
183        @ /bin/sh /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/cxx.sh $<
184
185## GNU make - how to make object file
186%.o : $(objdir)/%.cpp
187        @ /bin/sh /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/cxx.sh $<
188
189#####
190## GNU make - how to make object file
191$(objdir)/%.o : $(srcdir)/%.c
192        @ /bin/sh /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/c.sh $<
193
194## GNU make - how to make object file
195$(objdir)/%.o : $(objdir)/%.c
196        @ /bin/sh /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/c.sh $<
197
198## GNU make - how to make object file
199%.o : $(srcdir)/%.c
200        @ /bin/sh /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/c.sh $<
201
202## Housecleaning
203clean:
204        - /usr/bin/rm -r -f *.o *.obj *.exe \
205        $(tinyc_g_gen_FILES) \
206        $(objdir)/.tinyc.g \
207        tokenStreamRewrite
208
209distclean: clean
210        /usr/bin/rm -r -f Makefile
211
212## If cxx.sh script changed ..
213$(tinyc_g_obj_FILES) : /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/cxx.sh
214## If link.sh script changed ..
215$(tinyc_g_obj_FILES) : /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/link.sh
216
217$(objdir)/main.o: \
218        $(srcdir)/main.cpp \
219        $(sourcetree)/lib/cpp/antlr/TokenWithIndex.hpp \
220        $(sourcetree)/lib/cpp/antlr/config.hpp \
221        $(sourcetree)/lib/cpp/antlr/CommonToken.hpp \
222        $(sourcetree)/lib/cpp/antlr/Token.hpp \
223        $(sourcetree)/lib/cpp/antlr/TokenRefCount.hpp \
224        $(sourcetree)/lib/cpp/antlr/String.hpp \
225        $(sourcetree)/lib/cpp/antlr/TokenStreamRewriteEngine.hpp \
226        $(sourcetree)/lib/cpp/antlr/TokenStream.hpp \
227        $(sourcetree)/lib/cpp/antlr/BitSet.hpp \
228        $(objdir)/TinyCLexer.hpp \
229        $(sourcetree)/lib/cpp/antlr/InputBuffer.hpp \
230        $(sourcetree)/lib/cpp/antlr/CircularQueue.hpp \
231        $(objdir)/TinyCTokenTypes.hpp \
232        $(sourcetree)/lib/cpp/antlr/CharScanner.hpp \
233        $(sourcetree)/lib/cpp/antlr/RecognitionException.hpp \
234        $(sourcetree)/lib/cpp/antlr/ANTLRException.hpp \
235        $(sourcetree)/lib/cpp/antlr/SemanticException.hpp \
236        $(sourcetree)/lib/cpp/antlr/MismatchedCharException.hpp \
237        $(sourcetree)/lib/cpp/antlr/LexerSharedInputState.hpp \
238        $(sourcetree)/lib/cpp/antlr/RefCount.hpp \
239        $(sourcetree)/lib/cpp/antlr/CharBuffer.hpp \
240        $(objdir)/TinyCParser.hpp \
241        $(sourcetree)/lib/cpp/antlr/TokenBuffer.hpp \
242        $(sourcetree)/lib/cpp/antlr/LLkParser.hpp \
243        $(sourcetree)/lib/cpp/antlr/Parser.hpp \
244        $(sourcetree)/lib/cpp/antlr/MismatchedTokenException.hpp \
245        $(sourcetree)/lib/cpp/antlr/AST.hpp \
246        $(sourcetree)/lib/cpp/antlr/ASTRefCount.hpp \
247        $(sourcetree)/lib/cpp/antlr/ASTFactory.hpp \
248        $(sourcetree)/lib/cpp/antlr/ASTArray.hpp \
249        $(sourcetree)/lib/cpp/antlr/ASTPair.hpp \
250        $(sourcetree)/lib/cpp/antlr/ParserSharedInputState.hpp
251
252$(objdir)/TinyCParser.o: \
253        $(objdir)/TinyCParser.cpp \
254        $(objdir)/TinyCParser.hpp \
255        $(sourcetree)/lib/cpp/antlr/config.hpp \
256        $(sourcetree)/lib/cpp/antlr/TokenStream.hpp \
257        $(sourcetree)/lib/cpp/antlr/Token.hpp \
258        $(sourcetree)/lib/cpp/antlr/TokenRefCount.hpp \
259        $(sourcetree)/lib/cpp/antlr/TokenBuffer.hpp \
260        $(sourcetree)/lib/cpp/antlr/CircularQueue.hpp \
261        $(objdir)/TinyCTokenTypes.hpp \
262        $(sourcetree)/lib/cpp/antlr/LLkParser.hpp \
263        $(sourcetree)/lib/cpp/antlr/Parser.hpp \
264        $(sourcetree)/lib/cpp/antlr/BitSet.hpp \
265        $(sourcetree)/lib/cpp/antlr/RecognitionException.hpp \
266        $(sourcetree)/lib/cpp/antlr/ANTLRException.hpp \
267        $(sourcetree)/lib/cpp/antlr/MismatchedTokenException.hpp \
268        $(sourcetree)/lib/cpp/antlr/AST.hpp \
269        $(sourcetree)/lib/cpp/antlr/ASTRefCount.hpp \
270        $(sourcetree)/lib/cpp/antlr/ASTFactory.hpp \
271        $(sourcetree)/lib/cpp/antlr/ASTArray.hpp \
272        $(sourcetree)/lib/cpp/antlr/ASTPair.hpp \
273        $(sourcetree)/lib/cpp/antlr/ParserSharedInputState.hpp \
274        $(sourcetree)/lib/cpp/antlr/RefCount.hpp \
275        $(sourcetree)/lib/cpp/antlr/TokenStreamRewriteEngine.hpp \
276        $(sourcetree)/lib/cpp/antlr/TokenWithIndex.hpp \
277        $(sourcetree)/lib/cpp/antlr/CommonToken.hpp \
278        $(sourcetree)/lib/cpp/antlr/String.hpp \
279        $(sourcetree)/lib/cpp/antlr/NoViableAltException.hpp \
280        $(sourcetree)/lib/cpp/antlr/SemanticException.hpp
281
282$(objdir)/TinyCLexer.o: \
283        $(objdir)/TinyCLexer.cpp \
284        $(objdir)/TinyCLexer.hpp \
285        $(sourcetree)/lib/cpp/antlr/config.hpp \
286        $(sourcetree)/lib/cpp/antlr/CommonToken.hpp \
287        $(sourcetree)/lib/cpp/antlr/Token.hpp \
288        $(sourcetree)/lib/cpp/antlr/TokenRefCount.hpp \
289        $(sourcetree)/lib/cpp/antlr/InputBuffer.hpp \
290        $(sourcetree)/lib/cpp/antlr/CircularQueue.hpp \
291        $(sourcetree)/lib/cpp/antlr/BitSet.hpp \
292        $(objdir)/TinyCTokenTypes.hpp \
293        $(sourcetree)/lib/cpp/antlr/CharScanner.hpp \
294        $(sourcetree)/lib/cpp/antlr/TokenStream.hpp \
295        $(sourcetree)/lib/cpp/antlr/RecognitionException.hpp \
296        $(sourcetree)/lib/cpp/antlr/ANTLRException.hpp \
297        $(sourcetree)/lib/cpp/antlr/SemanticException.hpp \
298        $(sourcetree)/lib/cpp/antlr/MismatchedCharException.hpp \
299        $(sourcetree)/lib/cpp/antlr/LexerSharedInputState.hpp \
300        $(sourcetree)/lib/cpp/antlr/RefCount.hpp \
301        $(sourcetree)/lib/cpp/antlr/CharBuffer.hpp \
302        $(sourcetree)/lib/cpp/antlr/TokenStreamRewriteEngine.hpp \
303        $(sourcetree)/lib/cpp/antlr/TokenWithIndex.hpp \
304        $(sourcetree)/lib/cpp/antlr/String.hpp \
305        $(sourcetree)/lib/cpp/antlr/TokenStreamException.hpp \
306        $(sourcetree)/lib/cpp/antlr/TokenStreamIOException.hpp \
307        $(sourcetree)/lib/cpp/antlr/TokenStreamRecognitionException.hpp \
308        $(sourcetree)/lib/cpp/antlr/CharStreamException.hpp \
309        $(sourcetree)/lib/cpp/antlr/CharStreamIOException.hpp \
310        $(sourcetree)/lib/cpp/antlr/NoViableAltForCharException.hpp
311
312
313##xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
314
315## --*- Makefile -*--
316## Make listed targets even in case a file with same name exists.
317.PHONY: \
318 this \
319 all clean install test distclean \
320 this-all this-clean this-install this-test this-distclean \
321 all-this clean-this install-this test-this distclean-this \
322 $(eof)
323
324## delete suffix rules - shortens output when using -d and is not
325## used anyway (and should not be used).
326.SUFFIXES:
327
328Makefile :: /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../$(subdir)/Makefile.in  \
329            /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/config.deps \
330                                          /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/config.make \
331                                          /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/config.vars \
332            /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/config.status
333        @echo "*** update $(subdir)/Makefile"
334        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && CONFIG_FILES="$(subdir)/Makefile" /bin/sh ./config.status -q
335
336/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/config.deps : \
337        /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../scripts/config.deps.in
338        @echo "*** update $@"
339        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/config.deps /bin/sh ./config.status -q
340
341/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/config.make : \
342        /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../scripts/config.make.in
343        @echo "*** update $@"
344        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/config.make /bin/sh ./config.status -q
345
346/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/config.vars : \
347        /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../scripts/config.vars.in
348        @echo "*** update $@"
349        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/config.vars /bin/sh ./config.status -q
350
351/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/config.status : \
352        /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../configure
353        @echo "*** reconfigure $@ - stay tuned .."
354        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && /bin/sh ./config.status -q --recheck
355        @echo "*** update all configured files .."
356        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && /bin/sh ./config.status -q
357
358### In a pure devel mode there should be also a dependency listed on how
359### to make configure out of  configure.in.  This  requires that usr has
360### m4  and  autoconf (proper version) installed. Appropriate checks are
361### not done in configure. If so, then uncomment next lines:
362###
363###   @rule_configure_configure_in@
364###
365
366/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/antlr.sh : \
367        /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../scripts/antlr.sh.in
368        @echo "*** update $@"
369        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/antlr.sh /bin/sh ./config.status -q
370
371/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/cpp.sh : \
372        /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../scripts/cpp.sh.in
373        @echo "*** update $@"
374        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/cpp.sh /bin/sh ./config.status -q
375
376/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/csc.sh : \
377        /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../scripts/csc.sh.in
378        @echo "*** update $@"
379        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/csc.sh /bin/sh ./config.status -q
380
381/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/cxx.sh : \
382        /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../scripts/cxx.sh.in
383        @echo "*** update $@"
384        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/cxx.sh /bin/sh ./config.status -q
385
386/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/jar.sh : \
387        /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../scripts/jar.sh.in
388        @echo "*** update $@"
389        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/jar.sh /bin/sh ./config.status -q
390
391/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/javac.sh : \
392        /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../scripts/javac.sh.in
393        @echo "*** update $@"
394        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/javac.sh /bin/sh ./config.status -q
395
396/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/java.sh : \
397        /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../scripts/java.sh.in
398        @echo "*** update $@"
399        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/java.sh /bin/sh ./config.status -q
400
401/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/lib.sh : \
402        /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../scripts/lib.sh.in
403        @echo "*** update $@"
404        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/lib.sh /bin/sh ./config.status -q
405
406/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/link.sh : \
407        /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../scripts/link.sh.in
408        @echo "*** update $@"
409        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/link.sh /bin/sh ./config.status -q
410
411/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/pyinst.sh : \
412        /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../scripts/pyinst.sh.in
413        @echo "*** update $@"
414        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/pyinst.sh /bin/sh ./config.status -q
415
416/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/python.sh : \
417        /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../scripts/python.sh.in
418        @echo "*** update $@"
419        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/python.sh /bin/sh ./config.status -q
420
421
422## This rule shall ensure that ANTLR_NET is up-to-date. The rule is a
423## double colon rule, ie. further  rules  with the same target may be
424## added. For unknown reasons, double colon rules are always phony,ie.
425## getting executed even in case target exists. We break the infinite
426## loop,  we only  jump  into  subdir  "lib/csharp/src" if we are not
427## already in. It is very important that  each Makefile[.in] sets the
428## variable $(subdir) proper.
429
430/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/lib/antlr.runtime.dll ::
431        @ subdir="lib/csharp/antlr.runtime" ; \
432    case $(subdir) in \
433          $$subdir ) ;; \
434          * ) d="/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/$$subdir" ; \
435        test -f "$$d/Makefile" && {  \
436         /usr/bin/make -C "$$d" $@ ; \
437        }       \
438        ;; \
439    esac
440
441/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/lib/antlr.astframe.dll ::
442        @ subdir="lib/csharp/antlr.astframe" ; \
443    case $(subdir) in \
444          $$subdir ) ;; \
445          * ) d="/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/$$subdir" ; \
446        test -f "$$d/Makefile" && {  \
447         /usr/bin/make -C "$$d" $@ ; \
448        }       \
449        ;; \
450    esac
451
452
453/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/antlr/antlr.jar ::
454        @ subdir="antlr" ; \
455    case $(subdir) in \
456          $$subdir ) ;; \
457          * ) d="/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/$$subdir" ; \
458        test -f "$$d/Makefile" && {  \
459         /usr/bin/make -C "$$d" $@ ; \
460        }       \
461        ;; \
462    esac
463
464
465/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/lib/cpp/src/libantlr.a ::
466        @ subdir="lib/cpp/src" ; \
467    case $(subdir) in \
468          $$subdir ) ;; \
469          * ) d="/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/$$subdir" ; \
470        test -f "$$d/Makefile" && {  \
471         /usr/bin/make -C "$$d" $@ ; \
472        }       \
473        ;; \
474    esac
475
476##xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
477
Note: See TracBrowser for help on using the repository browser.