##xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

## --*- Makefile -*--
SUBDIRS         := 

## helper utilities ..
INSTALL         = /usr/bin/install -c
MKDIR           = /usr/bin/mkdir
RM              = /usr/bin/rm -r -f
RMF             = /usr/bin/rm -r -f
TAR             = /usr/bin/tar
TOUCH           = /bin/touch
CHMOD           = /usr/bin/chmod
SED             = /usr/bin/sed
GREP            = /usr/bin/grep
CAT             = /usr/bin/cat
CHMOD           = /usr/bin/chmod
CP              = /bin/cp
ECHO            = /bin/echo

# usual dribble
exec_prefix     = ${prefix}
prefix          = /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr
program_transform_name = s,x,x,
bindir          = ${exec_prefix}/bin
sbindir         = ${exec_prefix}/sbin
libexecdir      = ${exec_prefix}/libexec
datadir         = ${prefix}/share
sysconfdir      = ${prefix}/etc
sharedstatedir  = ${prefix}/com
localstatedir   = ${prefix}/var
libdir          = ${exec_prefix}/lib
includedir      = ${prefix}/include
oldincludedir   = /usr/include
infodir         = ${prefix}/info
mandir          = ${prefix}/man
build_alias     = 
host_alias      = 
target_alias    = 
build           = x86_64-unknown-linux-gnu
build_cpu       = x86_64
build_vendor    = unknown
build_os        = linux-gnu
host            = x86_64-unknown-linux-gnu
host_cpu        = x86_64
host_vendor     = unknown
host_os         = linux-gnu
just_make       = /usr/bin/make

# Version stuff...
VERSION         = 2
SUBVERSION      = 7
PATCHLEVEL      = 7
PACKAGE_NAME    = antlr
PACKAGE_VERSION = 2.7.7
versioneddir    = antlr-2.7.7

# navigation 
builddir        = /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7
buildtree       = /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7
sourcetree      = /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/..

## Two abbrevs to shorten things. $(thisdir) shall be the current
## working  directory  as  absolute  name  and $(_srcdir) is it's 
## source dir companion. That means that  $(thisdir)/Makefile has
## been generated by $(_srcdir)/Makefile.in.
_srcdir         = /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/../$(subdir)
thisdir         = /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/$(subdir)

# variable 'srcdir' is deprecated - use sourcetree
srcdir          = /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/..
# variable 'objdir' is deprecated - use buildtree
objdir          = /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7

# other
verbose         = 0

## SUBDIRS you want to exclude (separate them by using "|").
SUBDIRS_NOT    := .

CLR            = 

ANTLR_JAR      = /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/antlr/antlr.jar
ANTLR_LIB      = /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/lib/cpp/src/libantlr.a
ANTLR_NET      = /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/lib/antlr.runtime.dll
ANTLR_PY       = /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/lib/python/antlr/python.py
ASTFRAME_NET   = /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/lib/antlr.astframe.dll

antlr_jar      = antlr.jar
antlr_lib      = libantlr.a
antlr_net      = antlr.runtime.dll
antlr_py       = python.py
astframe_net   = antlr.astframe.dll
##xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

## do not change this value

subdir=examples/cpp/includeFile

srcdir=/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/examples/cpp/includeFile/../../../examples/cpp/includeFile
objdir=/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/examples/cpp/includeFile

this : test
test : test1


all: includeFile test

p_g_FILES = \
	$(srcdir)/P.g \
	$(eol)

p_g_cxx_FILES = \
	$(objdir)/PParser.cpp \
	$(objdir)/PLexer.cpp \
	$(eol)

p_g_hpp_FILES = \
	$(objdir)/PParser.hpp \
	$(objdir)/PParserTokenTypes.hpp \
	$(objdir)/PLexer.hpp \
	$(eol)

p_g_txt_FILES = \
	$(objdir)/PParserTokenTypes.txt \
	$(eol)

p_g_gen_FILES = \
	$(p_g_cxx_FILES) \
	$(p_g_hpp_FILES) \
	$(p_g_txt_FILES) \
	$(eol)

p_g_obj_FILES = \
	$(objdir)/PParser.o \
	$(objdir)/PLexer.o \
	$(eol)

## Source files
includeFile_cxx_FILES = \
	$(p_g_cxx_FILES) \
	$(srcdir)/Main.cpp \
	$(eol)

## Object files
includeFile_obj_FILES = \
	$(p_g_obj_FILES) \
	$(objdir)/Main.o \
	$(eol)

## Test commands
test1_cmd = $(objdir)/includeFile < $(srcdir)/test.c

## Tests to be executed
test1: includeFile
	@ v="$(verbose)"; if test $$v -gt 0 ; then  /bin/echo "$(test1_cmd)" ;  else  /bin/echo "exec test1 ..";  fi
	@ $(test1_cmd)

## How to make binaries
includeFile : $(includeFile_obj_FILES) /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/lib/cpp/src/libantlr.a
	/bin/sh /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/link.sh $@ $(includeFile_obj_FILES)

## How to compile ANTLR grammar files
$(objdir)/.P.g : $(srcdir)/P.g /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/antlr/antlr.jar
	/bin/sh /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/antlr.sh $(srcdir)/P.g
	$(TOUCH) `echo $(objdir)/.P.g`

$(p_g_gen_FILES): $(objdir)/.P.g


## GNU make - how to make object file
$(objdir)/%.o : $(srcdir)/%.cpp
	@ CXXINCLUDE="$(srcdir)" /bin/sh /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/cxx.sh $<

## GNU make - how to make object file
$(objdir)/%.o : $(objdir)/%.cpp
	@ CXXINCLUDE="$(srcdir)" /bin/sh /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/cxx.sh $<

## GNU make - how to make object file
%.o : $(srcdir)/%.cpp
	@ /bin/sh /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/cxx.sh $<

## GNU make - how to make object file
%.o : $(objdir)/%.cpp
	@ /bin/sh /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/cxx.sh $<

#####
## GNU make - how to make object file
$(objdir)/%.o : $(srcdir)/%.c
	@ /bin/sh /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/c.sh $<

## GNU make - how to make object file
$(objdir)/%.o : $(objdir)/%.c
	@ /bin/sh /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/c.sh $<

## GNU make - how to make object file
%.o : $(srcdir)/%.c
	@ /bin/sh /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/c.sh $<

## Housecleaning
clean:
	- /usr/bin/rm -r -f *.o *.obj *.exe \
	$(p_g_gen_FILES) \
	$(objdir)/.P.g \
	includeFile

distclean: clean
	/usr/bin/rm -r -f Makefile

## If cxx.sh script changed ..
$(p_g_obj_FILES) : /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/cxx.sh
## If link.sh script changed ..
$(p_g_obj_FILES) : /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/link.sh

$(objdir)/Main.o: \
	$(srcdir)/Main.cpp \
	$(srcdir)/Main.hpp \
	$(sourcetree)/lib/cpp/antlr/TokenStreamSelector.hpp \
	$(sourcetree)/lib/cpp/antlr/config.hpp \
	$(sourcetree)/lib/cpp/antlr/TokenStream.hpp \
	$(sourcetree)/lib/cpp/antlr/Token.hpp \
	$(sourcetree)/lib/cpp/antlr/TokenRefCount.hpp \
	$(objdir)/PLexer.hpp \
	$(sourcetree)/lib/cpp/antlr/CommonToken.hpp \
	$(sourcetree)/lib/cpp/antlr/InputBuffer.hpp \
	$(sourcetree)/lib/cpp/antlr/CircularQueue.hpp \
	$(sourcetree)/lib/cpp/antlr/BitSet.hpp \
	$(objdir)/PParserTokenTypes.hpp \
	$(sourcetree)/lib/cpp/antlr/CharScanner.hpp \
	$(sourcetree)/lib/cpp/antlr/RecognitionException.hpp \
	$(sourcetree)/lib/cpp/antlr/ANTLRException.hpp \
	$(sourcetree)/lib/cpp/antlr/SemanticException.hpp \
	$(sourcetree)/lib/cpp/antlr/MismatchedCharException.hpp \
	$(sourcetree)/lib/cpp/antlr/LexerSharedInputState.hpp \
	$(sourcetree)/lib/cpp/antlr/RefCount.hpp \
	$(sourcetree)/lib/cpp/antlr/CharBuffer.hpp \
	$(objdir)/PParser.hpp \
	$(sourcetree)/lib/cpp/antlr/TokenBuffer.hpp \
	$(sourcetree)/lib/cpp/antlr/LLkParser.hpp \
	$(sourcetree)/lib/cpp/antlr/Parser.hpp \
	$(sourcetree)/lib/cpp/antlr/MismatchedTokenException.hpp \
	$(sourcetree)/lib/cpp/antlr/AST.hpp \
	$(sourcetree)/lib/cpp/antlr/ASTRefCount.hpp \
	$(sourcetree)/lib/cpp/antlr/ASTFactory.hpp \
	$(sourcetree)/lib/cpp/antlr/ASTArray.hpp \
	$(sourcetree)/lib/cpp/antlr/ASTPair.hpp \
	$(sourcetree)/lib/cpp/antlr/ParserSharedInputState.hpp

$(objdir)/PLexer.o: \
	$(objdir)/PLexer.cpp \
	$(objdir)/PLexer.hpp \
	$(sourcetree)/lib/cpp/antlr/config.hpp \
	$(sourcetree)/lib/cpp/antlr/CommonToken.hpp \
	$(sourcetree)/lib/cpp/antlr/Token.hpp \
	$(sourcetree)/lib/cpp/antlr/TokenRefCount.hpp \
	$(sourcetree)/lib/cpp/antlr/InputBuffer.hpp \
	$(sourcetree)/lib/cpp/antlr/CircularQueue.hpp \
	$(sourcetree)/lib/cpp/antlr/BitSet.hpp \
	$(objdir)/PParserTokenTypes.hpp \
	$(sourcetree)/lib/cpp/antlr/CharScanner.hpp \
	$(sourcetree)/lib/cpp/antlr/TokenStream.hpp \
	$(sourcetree)/lib/cpp/antlr/RecognitionException.hpp \
	$(sourcetree)/lib/cpp/antlr/ANTLRException.hpp \
	$(sourcetree)/lib/cpp/antlr/SemanticException.hpp \
	$(sourcetree)/lib/cpp/antlr/MismatchedCharException.hpp \
	$(sourcetree)/lib/cpp/antlr/LexerSharedInputState.hpp \
	$(sourcetree)/lib/cpp/antlr/RefCount.hpp \
	$(sourcetree)/lib/cpp/antlr/CharBuffer.hpp \
	$(srcdir)/Main.hpp \
	$(sourcetree)/lib/cpp/antlr/TokenStreamSelector.hpp \
	$(sourcetree)/lib/cpp/antlr/TokenStreamException.hpp \
	$(sourcetree)/lib/cpp/antlr/TokenStreamIOException.hpp \
	$(sourcetree)/lib/cpp/antlr/TokenStreamRecognitionException.hpp \
	$(sourcetree)/lib/cpp/antlr/CharStreamException.hpp \
	$(sourcetree)/lib/cpp/antlr/CharStreamIOException.hpp \
	$(sourcetree)/lib/cpp/antlr/NoViableAltForCharException.hpp \
	$(objdir)/PParser.hpp \
	$(sourcetree)/lib/cpp/antlr/TokenBuffer.hpp \
	$(sourcetree)/lib/cpp/antlr/LLkParser.hpp \
	$(sourcetree)/lib/cpp/antlr/Parser.hpp \
	$(sourcetree)/lib/cpp/antlr/MismatchedTokenException.hpp \
	$(sourcetree)/lib/cpp/antlr/AST.hpp \
	$(sourcetree)/lib/cpp/antlr/ASTRefCount.hpp \
	$(sourcetree)/lib/cpp/antlr/ASTFactory.hpp \
	$(sourcetree)/lib/cpp/antlr/ASTArray.hpp \
	$(sourcetree)/lib/cpp/antlr/ASTPair.hpp \
	$(sourcetree)/lib/cpp/antlr/ParserSharedInputState.hpp

$(objdir)/PParser.o: \
	$(objdir)/PParser.cpp \
	$(objdir)/PParser.hpp \
	$(sourcetree)/lib/cpp/antlr/config.hpp \
	$(sourcetree)/lib/cpp/antlr/TokenStream.hpp \
	$(sourcetree)/lib/cpp/antlr/Token.hpp \
	$(sourcetree)/lib/cpp/antlr/TokenRefCount.hpp \
	$(sourcetree)/lib/cpp/antlr/TokenBuffer.hpp \
	$(sourcetree)/lib/cpp/antlr/CircularQueue.hpp \
	$(objdir)/PParserTokenTypes.hpp \
	$(sourcetree)/lib/cpp/antlr/LLkParser.hpp \
	$(sourcetree)/lib/cpp/antlr/Parser.hpp \
	$(sourcetree)/lib/cpp/antlr/BitSet.hpp \
	$(sourcetree)/lib/cpp/antlr/RecognitionException.hpp \
	$(sourcetree)/lib/cpp/antlr/ANTLRException.hpp \
	$(sourcetree)/lib/cpp/antlr/MismatchedTokenException.hpp \
	$(sourcetree)/lib/cpp/antlr/AST.hpp \
	$(sourcetree)/lib/cpp/antlr/ASTRefCount.hpp \
	$(sourcetree)/lib/cpp/antlr/ASTFactory.hpp \
	$(sourcetree)/lib/cpp/antlr/ASTArray.hpp \
	$(sourcetree)/lib/cpp/antlr/ASTPair.hpp \
	$(sourcetree)/lib/cpp/antlr/ParserSharedInputState.hpp \
	$(sourcetree)/lib/cpp/antlr/RefCount.hpp \
	$(srcdir)/Main.hpp \
	$(sourcetree)/lib/cpp/antlr/TokenStreamSelector.hpp \
	$(sourcetree)/lib/cpp/antlr/NoViableAltException.hpp \
	$(sourcetree)/lib/cpp/antlr/SemanticException.hpp


##xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

## --*- 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 :: /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/../$(subdir)/Makefile.in  \
            /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/config.deps \
					  /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/config.make \
					  /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/config.vars \
            /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/config.status
	@echo "*** update $(subdir)/Makefile"
	@cd /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7 && CONFIG_FILES="$(subdir)/Makefile" /bin/sh ./config.status -q

/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/config.deps : \
	/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/../scripts/config.deps.in
	@echo "*** update $@"
	@cd /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7 && CONFIG_FILES=scripts/config.deps /bin/sh ./config.status -q

/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/config.make : \
	/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/../scripts/config.make.in
	@echo "*** update $@"
	@cd /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7 && CONFIG_FILES=scripts/config.make /bin/sh ./config.status -q

/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/config.vars : \
	/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/../scripts/config.vars.in
	@echo "*** update $@"
	@cd /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7 && CONFIG_FILES=scripts/config.vars /bin/sh ./config.status -q

/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/config.status : \
	/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/../configure
	@echo "*** reconfigure $@ - stay tuned .."
	@cd /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7 && /bin/sh ./config.status -q --recheck
	@echo "*** update all configured files .."
	@cd /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7 && /bin/sh ./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@
###

/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/antlr.sh : \
	/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/../scripts/antlr.sh.in
	@echo "*** update $@"
	@cd /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7 && CONFIG_FILES=scripts/antlr.sh /bin/sh ./config.status -q

/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/cpp.sh : \
	/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/../scripts/cpp.sh.in
	@echo "*** update $@"
	@cd /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7 && CONFIG_FILES=scripts/cpp.sh /bin/sh ./config.status -q

/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/csc.sh : \
	/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/../scripts/csc.sh.in
	@echo "*** update $@"
	@cd /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7 && CONFIG_FILES=scripts/csc.sh /bin/sh ./config.status -q

/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/cxx.sh : \
	/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/../scripts/cxx.sh.in
	@echo "*** update $@"
	@cd /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7 && CONFIG_FILES=scripts/cxx.sh /bin/sh ./config.status -q

/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/jar.sh : \
	/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/../scripts/jar.sh.in
	@echo "*** update $@"
	@cd /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7 && CONFIG_FILES=scripts/jar.sh /bin/sh ./config.status -q

/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/javac.sh : \
	/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/../scripts/javac.sh.in
	@echo "*** update $@"
	@cd /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7 && CONFIG_FILES=scripts/javac.sh /bin/sh ./config.status -q

/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/java.sh : \
	/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/../scripts/java.sh.in
	@echo "*** update $@"
	@cd /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7 && CONFIG_FILES=scripts/java.sh /bin/sh ./config.status -q

/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/lib.sh : \
	/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/../scripts/lib.sh.in
	@echo "*** update $@"
	@cd /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7 && CONFIG_FILES=scripts/lib.sh /bin/sh ./config.status -q

/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/link.sh : \
	/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/../scripts/link.sh.in
	@echo "*** update $@"
	@cd /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7 && CONFIG_FILES=scripts/link.sh /bin/sh ./config.status -q

/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/pyinst.sh : \
	/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/../scripts/pyinst.sh.in
	@echo "*** update $@"
	@cd /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7 && CONFIG_FILES=scripts/pyinst.sh /bin/sh ./config.status -q

/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/python.sh : \
	/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/scripts/../scripts/python.sh.in
	@echo "*** update $@"
	@cd /mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7 && CONFIG_FILES=scripts/python.sh /bin/sh ./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.

/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/lib/antlr.runtime.dll :: 
	@ subdir="lib/csharp/antlr.runtime" ; \
    case $(subdir) in \
	  $$subdir ) ;; \
	  * ) d="/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/$$subdir" ; \
        test -f "$$d/Makefile" && {  \
         /usr/bin/make -C "$$d" $@ ; \
        } 	\
        ;; \
    esac

/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/lib/antlr.astframe.dll :: 
	@ subdir="lib/csharp/antlr.astframe" ; \
    case $(subdir) in \
	  $$subdir ) ;; \
	  * ) d="/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/$$subdir" ; \
        test -f "$$d/Makefile" && {  \
         /usr/bin/make -C "$$d" $@ ; \
        } 	\
        ;; \
    esac


/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/antlr/antlr.jar ::
	@ subdir="antlr" ; \
    case $(subdir) in \
	  $$subdir ) ;; \
	  * ) d="/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/$$subdir" ; \
        test -f "$$d/Makefile" && {  \
         /usr/bin/make -C "$$d" $@ ; \
        } 	\
        ;; \
    esac


/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/lib/cpp/src/libantlr.a ::
	@ subdir="lib/cpp/src" ; \
    case $(subdir) in \
	  $$subdir ) ;; \
	  * ) d="/mnt/beegfs/paulo.kubota/lib/lib_gnu/antlr/antlr-2.7.7/antlr-2.7.7/$$subdir" ; \
        test -f "$$d/Makefile" && {  \
         /usr/bin/make -C "$$d" $@ ; \
        } 	\
        ;; \
    esac

##xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

