464dd14d58
* gdb.ada/gnat_ada.gin: Delete, no longer used. * lib/ada.exp (gdb_compile_ada): Minor adaptation to new project file. * configure.ac: No longer generate gnat_ada.gpr. * configure: Regenerate. * gdb.ada/Makefile.in: Minor adaptations due to new project file. * gdb.ada/null_record/null_record.adb: Moved here from gdb.ada. * gdb.ada/null_record/bar.ads: Likewise. * gdb.ada/null_record/bar.adb: Likewise. * gdb.ada/fixed_points/fixed_points.adb: Likewise. * gdb.ada/null_record.exp (testdir): New variable. (testfile): executable is now in testdir subdirectory. (srcfile): Use full path to the main compilation unit. * gdb.ada/fixed_points.exp: Same changes as above.
24 lines
736 B
Makefile
24 lines
736 B
Makefile
VPATH = @srcdir@
|
|
srcdir = @srcdir@
|
|
|
|
EXECUTABLES = null_record/null_record fixed_points/fixed_points
|
|
|
|
MISCELLANEOUS =
|
|
|
|
all info install-info dvi install uninstall installcheck check:
|
|
@echo "Nothing to be done for $@..."
|
|
|
|
clean mostlyclean:
|
|
-find . -name '*.o' -print | xargs rm -f
|
|
-find . -name '*.ali' -print | xargs rm -f
|
|
-find . -name 'b~*.ad[sb]' -print | xargs rm -f
|
|
-rm -f *~ a.out xgdb *.x *.ci *.tmp
|
|
-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
|
|
-rm -f *-init.exp
|
|
-rm -fr *.log summary detail *.plog *.sum *.psum site.*
|