* gdb.ada: New subdirectory.
authorJoel Brobecker <brobecker@gnat.com>
Thu, 1 Apr 2004 00:53:51 +0000 (00:53 +0000)
committerJoel Brobecker <brobecker@gnat.com>
Thu, 1 Apr 2004 00:53:51 +0000 (00:53 +0000)
        * gdb.ada/Makefile.in: New file.
        * gdb.ada/gnat_ada.gpr.in: New file.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.ada/Makefile.in [new file with mode: 0644]
gdb/testsuite/gdb.ada/gnat_ada.gpr.in [new file with mode: 0644]

index 25798b6c659f32770017118da59cf1bc68879b59..f649b8870c14be53a6c3a41da9bf38fe1a019d7e 100644 (file)
@@ -1,3 +1,9 @@
+2004-03-31  Joel Brobecker  <brobecker@gnat.com>
+
+       * gdb.ada: New subdirectory.
+       * gdb.ada/Makefile.in: New file.
+       * gdb.ada/gnat_ada.gpr.in: New file.
+
 2004-03-31  Joel Brobecker  <brobecker@gnat.com>
 
        * lib/ada.exp: New file.
diff --git a/gdb/testsuite/gdb.ada/Makefile.in b/gdb/testsuite/gdb.ada/Makefile.in
new file mode 100644 (file)
index 0000000..1fb2048
--- /dev/null
@@ -0,0 +1,21 @@
+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.*
diff --git a/gdb/testsuite/gdb.ada/gnat_ada.gpr.in b/gdb/testsuite/gdb.ada/gnat_ada.gpr.in
new file mode 100644 (file)
index 0000000..f38f37b
--- /dev/null
@@ -0,0 +1,10 @@
+--  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;