diff options
author | K. Richard Pixley <rich@cygnus> | 1991-11-14 00:28:11 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1991-11-14 00:28:11 +0000 |
commit | 50d2bb5b4c8b9f3e343596801dcd7632c8c3dd5a (patch) | |
tree | e27f24021ea6a5520902bb7cb863868c63fa8495 /gdb | |
parent | b7becc8fc3add3a4f2ddc30528dc1fd82f91ad9f (diff) | |
download | gdb-50d2bb5b4c8b9f3e343596801dcd7632c8c3dd5a.zip gdb-50d2bb5b4c8b9f3e343596801dcd7632c8c3dd5a.tar.gz gdb-50d2bb5b4c8b9f3e343596801dcd7632c8c3dd5a.tar.bz2 |
now handle doc subdir, too
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/Makefile.in | 30 | ||||
-rw-r--r-- | gdb/configure.in | 1 |
2 files changed, 30 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index f8115f8..82ba8b4 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -266,6 +266,8 @@ TSSTART = /lib/crt0.o NTSSTART = kdb-start.o +SUBDIRS = doc + # For now, shortcut the "configure GDB for fewer languages" stuff. YYFILES = c-exp.tab.c m2-exp.tab.c YYOBJ = c-exp.tab.o m2-exp.tab.o @@ -276,11 +278,13 @@ YYOBJ = c-exp.tab.o m2-exp.tab.o ${CC} -c ${CFLAGS} $< all: gdb + $(MAKE) subdir_do DO=all "DODIRS=$(SUBDIRS)" install: gdb cp gdb $(bindir)/gdb.new mv $(bindir)/gdb.new $(bindir)/gdb $(M_INSTALL) + $(MAKE) subdir_do DO=install "DODIRS=$(SUBDIRS)" init.c: $(srcdir)/munch $(OBS) $(TSOBS) $(srcdir)/munch ${MUNCH_DEFINE} $(OBS) $(TSOBS) > init.c @@ -508,49 +512,73 @@ clean: rm -f init.c init.o version.c rm -f gdb core gdb.tar gdb.tar.Z make.log rm -f gdb[0-9] - cd $(srcdir)/doc; $(MAKE) clean + $(MAKE) subdir_do DO=clean "DODIRS=$(SUBDIRS)" distclean: clean c-exp.tab.c m2-exp.tab.c TAGS rm -f tm.h xm.h config.status rm -f y.output yacc.acts yacc.tmp rm -f ${TESTS} Makefile depend + $(MAKE) subdir_do DO=distclean "DODIRS=$(SUBDIRS)" realclean: clean rm -f c-exp.tab.c m2-exp.tab.c TAGS rm -f tm.h xm.h config.status rm -f Makefile depend + $(MAKE) subdir_do DO=realclean "DODIRS=$(SUBDIRS)" STAGESTUFF=${OBS} ${TSOBS} ${NTSOBS} ${ADD_FILES} init.c init.o version.c gdb +subdir_do: force + for i in $(DODIRS); do \ + if [ -d $(unsubdir)/$$i ] ; then \ + if (cd $(unsubdir)/$$i$(subdir); \ + $(MAKE) \ + "against=$(against)" \ + "AR=$(AR)" \ + "CC=$(CC)" \ + "AR_FLAGS=$(AR_FLAGS)" \ + "RANLIB=$(RANLIB)" \ + "BISON=$(BISON)" $(DO)) ; then true ; \ + else exit 1 ; fi ; \ + else true ; fi ; \ + done + # Copy the object files from a particular stage into a subdirectory. stage1: force -mkdir stage1 -mv -f $(STAGESTUFF) stage1 + $(MAKE) subdir_do DO=stage1 "DODIRS=$(SUBDIRS)" stage2: force -mkdir stage2 -mv -f $(STAGESTUFF) stage2 + $(MAKE) subdir_do DO=stage2 "DODIRS=$(SUBDIRS)" stage3: force -mkdir stage3 -mv -f $(STAGESTUFF) stage3 + $(MAKE) subdir_do DO=stage3 "DODIRS=$(SUBDIRS)" against=stage2 comparison: force for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i ; done + $(MAKE) subdir_do DO=comparison "DODIRS=$(SUBDIRS)" de-stage1: force - (cd stage1 ; mv -f * ..) - rmdir stage1 + $(MAKE) subdir_do DO=de-stage1 "DODIRS=$(SUBDIRS)" de-stage2: force - (cd stage2 ; mv -f * ..) - rmdir stage2 + $(MAKE) subdir_do DO=de-stage2 "DODIRS=$(SUBDIRS)" de-stage3: force - (cd stage3 ; mv -f * ..) - rmdir stage3 + $(MAKE) subdir_do DO=de-stage3 "DODIRS=$(SUBDIRS)" Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag) $(SHELL) ./config.status diff --git a/gdb/configure.in b/gdb/configure.in index f5ecae2..ce82cf2 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -1,3 +1,4 @@ +configdirs="doc" srcname="GDB" srctrigger=main.c # per-host: |