Preliminary cleanup for splitting host/native/target.
[deliverable/binutils-gdb.git] / gdb / Makefile
index 504e1b54a612b2ce4208cce56fcabc4bcc0dd250..1bec69da6d0fbb7f0b74836c7221904821edcc2b 100755 (executable)
@@ -272,6 +272,9 @@ YACC=bison -y
 # YACC=yacc
 SHELL=/bin/sh
 MAKE=make
+# We need either GNU m4 or SysV m4; Berkeley/Sun don't have quite enough.
+#M4=gm4
+M4=/usr/5bin/m4
 
 # Set this up with gcc if you have gnu ld and the loader will print out
 # line numbers for undefinded refs.
@@ -311,7 +314,8 @@ CFLAGS = ${GLOBAL_CFLAGS} ${PROFILE_CFLAGS} ${MALLOC_CFLAGS} ${INCLUDE_CFLAGS}
 LDFLAGS = $(CFLAGS)
 
 # Where is the "-liberty" library, containing getopt and obstack?
-LIBIBERTY =  ${srcdir}/../libiberty${subdir}/libiberty.a
+LIBIBERTY_DIR = ${srcdir}/../libiberty
+LIBIBERTY = ${LIBIBERTY_DIR}${subdir}/libiberty.a
 
 # Flags that describe where you can find the termcap library.
 # You may need to make other arrangements for USG.
@@ -416,7 +420,7 @@ OTHERS = Makefile.dist depend alldeps.mak Makefile.sdir \
         createtags munch config.gdb config.status \
         ChangeLog ChangeLog-3.x \
         README TODO TAGS WHATS.NEW \
-        gdb.texinfo gdbint.texinfo gdbrc.tex threecol.tex \
+        doc \
        .gdbinit COPYING expread.tab.c stab.def \
         copying.c Projects Convex.notes copying.awk \
         saber.suppress standalone.c stuff.c kdb-start.c \
@@ -471,17 +475,18 @@ gdb: $(OBS) $(TSOBS) ${ADD_DEPS} ${RL_LIB_DEP} ${CDEPS} init.o
        ${RL_LIB} $(CLIBS)
 
 saber_gdb: $(SFILES) $(DEPFILES) copying.c version.c
-       #setopt load_flags $(CFLAGS) -I$(BFD_DIR)
+       #setopt load_flags $(CFLAGS) -I$(BFD_DIR) -DHOST_SYS=SUN4_SYS
        #load ./init.c $(SFILES)
-       #unload ${srcdir}/expread.y
+       #unload ${srcdir}/expread.y ${srcdir}/vx-share/*.h
+       #unload ${srcdir}/nindy-share/[A-Z]*
        #load ${srcdir}/expread.tab.c readline/libreadline.a
        #load copying.c version.c
        #load `echo " "$(DEPFILES) | sed -e 's/\.o/.c/g' -e 's, , ../,g'`
-       #load ${LIBIBERTY}/*.c
+       #load ${LIBIBERTY_DIR}/*.c
        #load ${BFD_DIR}/*.c
        #load -ltermcap 
        ##void mcheck(a) void (*a)(); { }
-       ##void mtrace(a) void (*a)(); { }
+       ##void mtrace() { }
 
 
 
@@ -632,6 +637,7 @@ 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]
+       rm -f gdb.dvi gdb-all*
        cd readline ; make clean
 
 distclean: clean expread.tab.c TAGS
@@ -644,10 +650,21 @@ realclean: clean
        rm -f tm.h xm.h config.status
        rm -f Makefile
 
-gdb.dvi : gdb.texinfo
-       tex gdb.texinfo
-       texindex gdb.??
-       tex gdb.texinfo
+gdb-all.texinfo: ${srcdir}/doc/gdb.texinfo
+       ${M4} $(srcdir)/doc/pretex.m4 $(srcdir)/doc/none.m4 $(srcdir)/doc/all.m4 $(srcdir)/doc/gdb.texinfo >gdb-all.texinfo
+
+gdb.dvi : gdb-all.texinfo
+       tex gdb-all.texinfo
+       texindex gdb-all.??
+       tex gdb-all.texinfo
+       mv gdb-all.dvi gdb.dvi
+       rm -f gdb-all.?? gdb-all.???
+
+# This should work eventually, but we're using texinfo2, and many makeinfo's 
+# can't cope with all the markup.  In the meantime, we distribute the info
+# files as formatted by the elisp texinfo2 code.
+#gdb.info: gdb-all.texinfo
+#      makeinfo gdb-all.texinfo
 
 # Make copying.c from COPYING
 copying.c : COPYING copying.awk
This page took 0.024779 seconds and 4 git commands to generate.