Install gdb in /usr/lib/aout or /usr/lib/elf depending on format.

This commit is contained in:
Peter Wemm 1998-10-15 00:15:01 +00:00
parent 17ee2b2055
commit 54751142df
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=40365

View File

@ -1,7 +1,13 @@
# $Id$
# $Id: Makefile.inc,v 1.4 1998/05/01 14:37:36 bde Exp $
CFLAGS+=-I${GDBDIR}/include -I${GDBDIR}/gdb -I${GDBDIR}/bfd
CFLAGS+=-I${GDBDIR}/libiberty -I${GDBDIR}/gdb/config
CFLAGS+=-DHAVE_CONFIG_H
.if ${OBJFORMAT} == elf
BINDIR?= /usr/libexec/elf
.else
BINDIR?= /usr/libexec/aout
.endif
.include "../Makefile.inc"