mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-28 14:30:48 +00:00
* Makefile.in (ALL_SUBDIRS): New variable.
(subdirs, clean, distclean): Use it. * gdb.arch/Makefile.in: Clean up Makefile. Remove rules for regenerating Makefile, since it is generated from the top level. * gdb.asm/Makefile.in: Likewise. * gdb.base/Makefile.in: Likewise. * gdb.c++/Makefile.in: Likewise. * gdb.disasm/Makefile.in: Likewise. * gdb.java/Makefile.in: Likewise. * gdb.mi/Makefile.in: Likewise. * gdb.threads/Makefile.in: Likewise. * gdb.trace/Makefile.in: Likewise.
This commit is contained in:
parent
372613e32f
commit
696d5a5b84
@ -1,3 +1,18 @@
|
||||
2003-01-09 Daniel Jacobowitz <drow@mvista.com>
|
||||
|
||||
* Makefile.in (ALL_SUBDIRS): New variable.
|
||||
(subdirs, clean, distclean): Use it.
|
||||
* gdb.arch/Makefile.in: Clean up Makefile. Remove rules for
|
||||
regenerating Makefile, since it is generated from the top level.
|
||||
* gdb.asm/Makefile.in: Likewise.
|
||||
* gdb.base/Makefile.in: Likewise.
|
||||
* gdb.c++/Makefile.in: Likewise.
|
||||
* gdb.disasm/Makefile.in: Likewise.
|
||||
* gdb.java/Makefile.in: Likewise.
|
||||
* gdb.mi/Makefile.in: Likewise.
|
||||
* gdb.threads/Makefile.in: Likewise.
|
||||
* gdb.trace/Makefile.in: Likewise.
|
||||
|
||||
2003-01-09 David Carlton <carlton@math.stanford.edu>
|
||||
|
||||
* gdb.c++/annota2.exp: KFAIL "watch triggered on a.x".
|
||||
|
@ -35,6 +35,8 @@ SHELL = @SHELL@
|
||||
EXEEXT = @EXEEXT@
|
||||
SUBDIRS = @subdirs@
|
||||
RPATH_ENVVAR = @RPATH_ENVVAR@
|
||||
ALL_SUBDIRS = gdb.arch gdb.asm gdb.base gdb.c++ gdb.disasm gdb.java gdb.mi \
|
||||
gdb.threads gdb.trace $(SUBDIRS)
|
||||
|
||||
EXPECT = `if [ -f $${rootme}/../../expect/expect ] ; then \
|
||||
echo $${rootme}/../../expect/expect ; \
|
||||
@ -145,7 +147,7 @@ subdir_do: force
|
||||
force:;
|
||||
|
||||
subdirs:
|
||||
for dir in ${SUBDIRS} ; \
|
||||
for dir in ${ALL_SUBDIRS} ; \
|
||||
do \
|
||||
echo "$$dir:" ; \
|
||||
if [ -d $$dir ] ; then \
|
||||
@ -157,8 +159,8 @@ subdirs:
|
||||
|
||||
clean mostlyclean:
|
||||
-rm -f *~ core *.o a.out xgdb *.x *.grt
|
||||
if [ x"${SUBDIRS}" != x ] ; then \
|
||||
for dir in ${SUBDIRS}; \
|
||||
if [ x"${ALL_SUBDIRS}" != x ] ; then \
|
||||
for dir in ${ALL_SUBDIRS}; \
|
||||
do \
|
||||
echo "$$dir:"; \
|
||||
if [ -d $$dir ]; then \
|
||||
@ -171,8 +173,8 @@ distclean maintainer-clean realclean: clean
|
||||
-rm -f *~ core
|
||||
-rm -f Makefile config.status *-init.exp
|
||||
-rm -fr *.log summary detail *.plog *.sum *.psum site.*
|
||||
if [ x"${SUBDIRS}" != x ] ; then \
|
||||
for dir in ${SUBDIRS}; \
|
||||
if [ x"${ALL_SUBDIRS}" != x ] ; then \
|
||||
for dir in ${ALL_SUBDIRS}; \
|
||||
do \
|
||||
echo "$$dir:"; \
|
||||
if [ -d $$dir ]; then \
|
||||
|
@ -5,16 +5,8 @@ EXECUTABLES = altivec-abi altivec-regs
|
||||
|
||||
MISCELLANEOUS =
|
||||
|
||||
all:
|
||||
@echo "Nothing to be done for all..."
|
||||
|
||||
info:
|
||||
install-info:
|
||||
dvi:
|
||||
install:
|
||||
uninstall: force
|
||||
installcheck:
|
||||
check:
|
||||
all info install-info dvi install uninstall installcheck check:
|
||||
@echo "Nothing to be done for $@..."
|
||||
|
||||
clean mostlyclean:
|
||||
-rm -f *~ *.o a.out *.x *.ci *.tmp
|
||||
@ -26,6 +18,3 @@ distclean maintainer-clean realclean: clean
|
||||
-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
|
||||
|
@ -2,35 +2,18 @@ VPATH = @srcdir@
|
||||
srcdir = @srcdir@
|
||||
|
||||
EXECUTABLES =
|
||||
MISCELLANEOUS = arch.inc
|
||||
|
||||
# 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:
|
||||
all info install-info dvi install uninstall installcheck check:
|
||||
@echo "Nothing to be done for $@..."
|
||||
|
||||
clean mostlyclean:
|
||||
-rm -f *~ *.o a.out xgdb *.x $(CROSS_EXECUTABLES) *.ci *.tmp
|
||||
-rm -f *~ *.o a.out *.x *.ci *.tmp
|
||||
-rm -f core core.coremaker coremaker.core corefile $(EXECUTABLES)
|
||||
-rm -f twice-tmp.c
|
||||
-rm -f $(MISCELLANEOUS)
|
||||
|
||||
distclean maintainer-clean realclean: clean
|
||||
-rm -f *~ core
|
||||
-rm -f Makefile config.status config.log
|
||||
-rm -f arch.inc
|
||||
-rm -f *-init.exp
|
||||
-rm -fr *.log summary detail *.plog *.sum *.psum site.*
|
||||
|
||||
Makefile : $(srcdir)/Makefile.in config.status
|
||||
$(SHELL) ./config.status
|
||||
|
||||
config.status: $(srcdir)/configure
|
||||
$(SHELL) ./config.status --recheck
|
||||
|
@ -17,16 +17,8 @@ EXECUTABLES = all-types annota1 bitfields break \
|
||||
MISCELLANEOUS = coremmap.data ../foobar.baz \
|
||||
shr1.sl shr2.sl solib_sl.sl solib1.sl solib2.sl
|
||||
|
||||
all:
|
||||
@echo "Nothing to be done for all..."
|
||||
|
||||
info:
|
||||
install-info:
|
||||
dvi:
|
||||
install:
|
||||
uninstall: force
|
||||
installcheck:
|
||||
check:
|
||||
all info install-info dvi install uninstall installcheck check:
|
||||
@echo "Nothing to be done for $@..."
|
||||
|
||||
clean mostlyclean:
|
||||
-rm -f *~ *.o a.out xgdb *.x *.ci *.tmp
|
||||
@ -38,6 +30,3 @@ distclean maintainer-clean realclean: clean
|
||||
-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
|
||||
|
@ -5,16 +5,8 @@ EXECUTABLES = ambiguous annota2 anon-union cplusfuncs cttiadd \
|
||||
derivation inherit local member-ptr method misc \
|
||||
overload ovldbreak ref-typ ref-typ2 templates userdef virtfunc namespace ref-types
|
||||
|
||||
all:
|
||||
@echo "Nothing to be done for all..."
|
||||
|
||||
info:
|
||||
install-info:
|
||||
dvi:
|
||||
install:
|
||||
uninstall: force
|
||||
installcheck:
|
||||
check:
|
||||
all info install-info dvi install uninstall installcheck check:
|
||||
@echo "Nothing to be done for $@..."
|
||||
|
||||
clean mostlyclean:
|
||||
-rm -f *~ *.o *.ci
|
||||
@ -22,6 +14,3 @@ clean mostlyclean:
|
||||
|
||||
distclean maintainer-clean realclean: clean
|
||||
-rm -f Makefile config.status config.log
|
||||
|
||||
Makefile: $(srcdir)/Makefile.in $(srcdir)/configure.in
|
||||
$(SHELL) ./config.status --recheck
|
||||
|
@ -1,18 +1,13 @@
|
||||
#### host, target, and site specific Makefile frags come in here.
|
||||
|
||||
VPATH = @srcdir@
|
||||
srcdir = @srcdir@
|
||||
|
||||
.PHONY: all clean mostlyclean distclean realclean
|
||||
|
||||
all:
|
||||
@echo "Nothing to be done for all..."
|
||||
all info install-info dvi install uninstall installcheck check:
|
||||
@echo "Nothing to be done for $@..."
|
||||
|
||||
clean mostlyclean:
|
||||
-rm -f *.o *.diff *~ *.bad core h8300s hppa mn10200 mn10300 sh3
|
||||
|
||||
distclean maintainer-clean realclean: clean
|
||||
-rm -f Makefile config.status config.log
|
||||
|
||||
Makefile: $(srcdir)/Makefile.in $(srcdir)/configure.in
|
||||
$(SHELL) ./config.status --recheck
|
||||
|
@ -1,10 +1,8 @@
|
||||
srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
all:
|
||||
@echo "Nothing to be done for all..."
|
||||
|
||||
#### host, target, and site specific Makefile frags come in here.
|
||||
all info install-info dvi install uninstall installcheck check:
|
||||
@echo "Nothing to be done for $@..."
|
||||
|
||||
.SUFFIXES: .java .class .o .exe .exp .check
|
||||
|
||||
@ -21,6 +19,3 @@ clean mostlyclean:
|
||||
|
||||
distclean maintainer-clean realclean: clean
|
||||
-rm -f Makefile config.status config.log
|
||||
|
||||
Makefile: $(srcdir)/Makefile.in $(srcdir)/configure.in
|
||||
$(SHELL) ./config.status --recheck
|
||||
|
@ -5,20 +5,11 @@ PROGS = basics c_variable cpp_variable var-cmd
|
||||
|
||||
MISCELLANEOUS = testcmds
|
||||
|
||||
all:
|
||||
@echo "Nothing to be done for all..."
|
||||
|
||||
#### host, target, and site specific Makefile frags come in here.
|
||||
all info install-info dvi install uninstall installcheck check:
|
||||
@echo "Nothing to be done for $@..."
|
||||
|
||||
clean mostlyclean:
|
||||
-rm -f *.ci *.o $(OBJS) $(PROGS) *~ core
|
||||
|
||||
distclean maintainer-clean realclean: clean
|
||||
-rm -f Makefile config.status config.log
|
||||
|
||||
Makefile: $(srcdir)/Makefile.in $(srcdir)/configure.in
|
||||
$(SHELL) ./config.status --recheck
|
||||
|
||||
# Local variables:
|
||||
# change-log-default-name: "ChangeLog-mi"
|
||||
# End:
|
||||
|
@ -3,29 +3,11 @@ srcdir = @srcdir@
|
||||
|
||||
EXECUTABLES = pthreads
|
||||
|
||||
all:
|
||||
@echo "Nothing to be done for all..."
|
||||
|
||||
info:
|
||||
install-info:
|
||||
dvi:
|
||||
install:
|
||||
uninstall: force
|
||||
installcheck:
|
||||
check:
|
||||
all info install-info dvi install uninstall installcheck check:
|
||||
@echo "Nothing to be done for $@..."
|
||||
|
||||
clean mostlyclean:
|
||||
-rm -f *~ *.o a.out xgdb *.x *.ci *.tmp core* $(EXECUTABLES)
|
||||
|
||||
distclean maintainer-clean realclean: clean
|
||||
-rm -f Makefile config.status config.log config.h
|
||||
|
||||
Makefile : $(srcdir)/Makefile.in $(srcdir)/configure.in
|
||||
$(SHELL) ./config.status --recheck
|
||||
|
||||
config.h: stamp-h ; @true
|
||||
stamp-h: config.in config.status
|
||||
CONFIG_HEADERS=config.h:config.in $(SHELL) config.status
|
||||
|
||||
config.status: configure
|
||||
$(SHELL) config.status --recheck
|
||||
|
@ -1,12 +1,10 @@
|
||||
#### host, target, and site specific Makefile frags come in here.
|
||||
|
||||
VPATH = @srcdir@
|
||||
srcdir = @srcdir@
|
||||
|
||||
.PHONY: all clean mostlyclean distclean realclean
|
||||
|
||||
all:
|
||||
@echo "Nothing to be done for all..."
|
||||
all info install-info dvi install uninstall installcheck check:
|
||||
@echo "Nothing to be done for $@..."
|
||||
|
||||
clean mostlyclean:
|
||||
-rm -f actions circ collection limits
|
||||
@ -14,8 +12,3 @@ clean mostlyclean:
|
||||
|
||||
distclean maintainer-clean realclean: clean
|
||||
-rm -f Makefile config.status config.log
|
||||
|
||||
Makefile: $(srcdir)/Makefile.in $(srcdir)/configure.in
|
||||
$(SHELL) ./config.status --recheck
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user