1999-04-16 01:35:26 +00:00
|
|
|
VPATH = @srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
|
2011-03-03 16:57:58 +00:00
|
|
|
SUBDIRS = gdb.aCC gdb.base-hp gdb.compat gdb.defects gdb.objdbg
|
1999-04-16 01:35:26 +00:00
|
|
|
|
1999-08-16 19:57:19 +00:00
|
|
|
all:
|
1999-04-16 01:35:26 +00:00
|
|
|
@echo "Nothing to be done for all..."
|
|
|
|
|
1999-08-16 19:57:19 +00:00
|
|
|
info:
|
|
|
|
install-info:
|
|
|
|
dvi:
|
|
|
|
install:
|
|
|
|
uninstall: force
|
|
|
|
installcheck:
|
|
|
|
check:
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
clean mostlyclean:
|
1999-08-16 19:57:19 +00:00
|
|
|
-rm -f *~ core *.o
|
|
|
|
if [ x"${SUBDIRS}" != x ] ; then \
|
|
|
|
for dir in ${SUBDIRS}; \
|
|
|
|
do \
|
|
|
|
echo "$$dir:"; \
|
|
|
|
if [ -d $$dir ]; then \
|
|
|
|
(cd $$dir; $(MAKE) clean); \
|
|
|
|
fi; \
|
|
|
|
done ; \
|
|
|
|
else true; fi
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
distclean maintainer-clean realclean: clean
|
|
|
|
-rm -f Makefile config.status config.log
|
2011-02-22 20:52:49 +00:00
|
|
|
-rm -f *-init.exp gdb.log gdb.sum
|
1999-08-16 19:57:19 +00:00
|
|
|
-rm -fr *.log summary detail *.plog *.sum *.psum site.*
|
|
|
|
if [ x"${SUBDIRS}" != x ] ; then \
|
|
|
|
for dir in ${SUBDIRS}; \
|
|
|
|
do \
|
|
|
|
echo "$$dir:"; \
|
|
|
|
if [ -d $$dir ]; then \
|
|
|
|
(cd $$dir; $(MAKE) distclean); \
|
|
|
|
fi; \
|
|
|
|
done ; \
|
|
|
|
else true; fi
|