Date: Mon, 12 Apr 2004 19:04:48 -0700 (PDT) From: Marcel Moolenaar <marcel@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 50954 for review Message-ID: <200404130204.i3D24mYt024086@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=50954 Change 50954 by marcel@marcel_nfs on 2004/04/12 19:04:48 Move the tm.h target from the MI makefile to the MD makefile. On alpha we need to include tm-alpha.h instead of tm-fbsd.h. Affected files ... .. //depot/projects/gdb/gnu/usr.bin/gdb/gdb/Makefile#9 edit .. //depot/projects/gdb/gnu/usr.bin/gdb/gdb/i386/Makefile#2 edit .. //depot/projects/gdb/gnu/usr.bin/gdb/gdb/ia64/Makefile#2 edit Differences ... ==== //depot/projects/gdb/gnu/usr.bin/gdb/gdb/Makefile#9 (text+ko) ==== @@ -66,9 +66,6 @@ nm.h: echo '#include "${TARGET_ARCH}/nm-fbsd.h"' > ${.TARGET} -tm.h: - echo '#include "${TARGET_ARCH}/tm-fbsd.h"' > ${.TARGET} - xm.h: echo '#include "${TARGET_ARCH}/xm-${TARGET_ARCH}.h"' > ${.TARGET} ==== //depot/projects/gdb/gnu/usr.bin/gdb/gdb/i386/Makefile#2 (text+ko) ==== @@ -2,3 +2,6 @@ SRCS+= i386-nat.c i386-tdep.c i386bsd-nat.c i386bsd-tdep.c \ i386fbsd-nat.c i386fbsd-tdep.c i387-tdep.c + +tm.h: + echo '#include "i386/tm-fbsd.h"' > ${.TARGET} ==== //depot/projects/gdb/gnu/usr.bin/gdb/gdb/ia64/Makefile#2 (text+ko) ==== @@ -1,3 +1,6 @@ # $FreeBSD$ SRCS+= ia64-fbsd-nat.c ia64-fbsd-tdep.c ia64-tdep.c + +tm.h: + echo '#include "ia64/tm-fbsd.h"' > ${.TARGET}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200404130204.i3D24mYt024086>