From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7181 invoked by alias); 30 Mar 2004 22:08:20 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 7148 invoked from network); 30 Mar 2004 22:08:17 -0000 Received: from unknown (HELO takamaka.act-europe.fr) (142.179.108.108) by sources.redhat.com with SMTP; 30 Mar 2004 22:08:17 -0000 Received: by takamaka.act-europe.fr (Postfix, from userid 507) id DADBD47D62; Tue, 30 Mar 2004 14:08:15 -0800 (PST) Date: Tue, 30 Mar 2004 22:08:00 -0000 From: Joel Brobecker To: gdb-patches@sources.redhat.com Subject: Re: [RFA/testsuite/ada] Add gdb.ada subdirectory + Makefile & Ada project file Message-ID: <20040330220815.GL888@gnat.com> References: <20040329200237.GF888@gnat.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="3Gf/FFewwPeBMqCJ" Content-Disposition: inline In-Reply-To: <20040329200237.GF888@gnat.com> User-Agent: Mutt/1.4i X-SW-Source: 2004-03/txt/msg00749.txt.bz2 --3Gf/FFewwPeBMqCJ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 820 [Doh! With the files attached this time... Thanks Andrew!] Hello, This is a continuation of: http://sources.redhat.com/ml/gdb-patches/2004-03/msg00726.html This "patch" add a new subdirectory named gdb.ada, designed to contain testcases that involve applications written in Ada. Besides creating that subdirectory, it adds a Makefile.in and a GNAT project file stub (gnat_ada.gpr.in). The purpose of the GNAT project file is to provide the GNAT toolsuite with some information such as source location, and where to store the object files and executables. 2004-03-29 J. Brobecker * gdb.ada: New subdirectory. * gdb.ada/Makefile.in: New file. * gdb.ada/gnat_ada.gpr.in: New file. Tested on x86-linux, using a small Ada testcase. OK to apply? Thanks, -- Joel --3Gf/FFewwPeBMqCJ Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="Makefile.in" Content-length: 580 VPATH = @srcdir@ srcdir = @srcdir@ EXECUTABLES = null_record MISCELLANEOUS = all info install-info dvi install uninstall installcheck check: @echo "Nothing to be done for $@..." clean mostlyclean: -gnatclean -Pgnat_ada -q $(EXECUTABLES) -rm -f *~ *.o a.out xgdb *.x *.ci *.tmp -rm -f core core.coremaker coremaker.core corefile $(EXECUTABLES) -rm -f $(MISCELLANEOUS) twice-tmp.c distclean maintainer-clean realclean: clean -rm -f *~ core -rm -f Makefile config.status config.log gnat_ada.gpr -rm -f *-init.exp -rm -fr *.log summary detail *.plog *.sum *.psum site.* --3Gf/FFewwPeBMqCJ Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="gnat_ada.gpr.in" Content-length: 290 -- This project files allows us to control the location where the -- compilation artifacts produced when building the Ada examples -- are stored. project Gnat_Ada is for Source_Dirs use ("@srcdir@"); -- No need to set the Object_Dir, it is set to "." by default. end Gnat_Ada; --3Gf/FFewwPeBMqCJ--