diff options
author | Doug Evans <dje@google.com> | 1998-03-13 00:28:30 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 1998-03-13 00:28:30 +0000 |
commit | b6f386f5de61fd92de8ad2bc8c372ddf245106ad (patch) | |
tree | 31ea1255c04c12c1696355ca651882a035bc683f /gdb/testsuite | |
parent | b2a7abf2f507708dcb6d393b53f0e3653db88f74 (diff) | |
download | gdb-b6f386f5de61fd92de8ad2bc8c372ddf245106ad.zip gdb-b6f386f5de61fd92de8ad2bc8c372ddf245106ad.tar.gz gdb-b6f386f5de61fd92de8ad2bc8c372ddf245106ad.tar.bz2 |
Makefile.in for gdb.asm.
Diffstat (limited to 'gdb/testsuite')
-rw-r--r-- | gdb/testsuite/gdb.asm/.Sanitize | 36 | ||||
-rw-r--r-- | gdb/testsuite/gdb.asm/Makefile.in | 32 |
2 files changed, 68 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.asm/.Sanitize b/gdb/testsuite/gdb.asm/.Sanitize new file mode 100644 index 0000000..e39ddf1 --- /dev/null +++ b/gdb/testsuite/gdb.asm/.Sanitize @@ -0,0 +1,36 @@ +# .Sanitize for devo/gdb/testsuite/gdb.asm. + +# Each directory to survive its way into a release will need a file +# like this one called "./.Sanitize". All keyword lines must exist, +# and must exist in the order specified by this file. Each directory +# in the tree will be processed, top down, in the following order. + +# Hash started lines like this one are comments and will be deleted +# before anything else is done. Blank lines will also be squashed +# out. + +# The lines between the "Do-first:" line and the "Things-to-keep:" +# line are executed as a /bin/sh shell script before anything else is +# done in this directory. + +Do-first: + +# All files listed between the "Things-to-keep:" line and the +# "Do-last:" line will be kept. All other files will be removed. +# Directories listed in this section will have their own Sanitize +# called. Directories not listed will be removed in their entirety +# with rm -rf. + +Things-to-keep: + +Makefile.in + +Things-to-lose: + +# The lines between the "Do-last:" line and the end of the file +# are executed as a /bin/sh shell script after everything else is +# done. + +Do-last: + +# eof diff --git a/gdb/testsuite/gdb.asm/Makefile.in b/gdb/testsuite/gdb.asm/Makefile.in new file mode 100644 index 0000000..5c469db --- /dev/null +++ b/gdb/testsuite/gdb.asm/Makefile.in @@ -0,0 +1,32 @@ +VPATH = @srcdir@ +srcdir = @srcdir@ + +EXECUTABLES = + +# uuencoded format to avoid SCCS/RCS problems with binary files. +CROSS_EXECUTABLES = + +all: + @echo "Nothing to be done for all..." + +info: +install-info: +dvi: +install: +uninstall: force +installcheck: +check: + +clean mostlyclean: + -rm -f *~ *.o a.out xgdb *.x $(CROSS_EXECUTABLES) *.ci *.tmp + -rm -f core core.coremaker coremaker.core corefile $(EXECUTABLES) + -rm -f 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.* + +Makefile : $(srcdir)/Makefile.in $(srcdir)/configure.in + $(SHELL) ./config.status --recheck |