diff options
Diffstat (limited to 'gnu/usr.bin/gdb/arch/arm/Makefile')
-rw-r--r-- | gnu/usr.bin/gdb/arch/arm/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gnu/usr.bin/gdb/arch/arm/Makefile b/gnu/usr.bin/gdb/arch/arm/Makefile new file mode 100644 index 0000000000000..3638a6cabba1f --- /dev/null +++ b/gnu/usr.bin/gdb/arch/arm/Makefile @@ -0,0 +1,17 @@ +# $FreeBSD$ + +GENSRCS+= xm.h +LIBSRCS+= armfbsd-nat.c +LIBSRCS+= arm-tdep.c armfbsd-tdep.c solib.c solib-svr4.c + +nm.h: +#XXX this should be arm/nm-fbsd.h but won't until it's merged into the gdb repo + echo '#include "nm-fbsd.h"' > ${.TARGET} + +tm.h: +#XXX this should be arm/tm-fbsd.h + echo '#include "tm-fbsd.h"' > ${.TARGET} + +xm.h: +#XXX this should be arm/xm-fbsd.h + echo '#include "xm-fbsd.h"' > ${.TARGET} |