mirror of
https://github.com/opnsense/src.git
synced 2026-03-26 04:33:12 -04:00
14 lines
408 B
Makefile
14 lines
408 B
Makefile
# bsd.lib.mk causes this file to be loaded multiple times.
|
|
.if !defined(GDB_MAKEFILE_INC_BEEN_HERE)
|
|
GDB_MAKEFILE_INC_BEEN_HERE=yes
|
|
|
|
# this may be defined in other places
|
|
.if !defined(GDBDIR)
|
|
GDBDIR= ${.CURDIR}/../../../../contrib/gdb
|
|
.endif
|
|
|
|
CFLAGS+= -I${GDBDIR}/include/. -I${GDBDIR}/gdb/. -I${GDBDIR}/bfd/.
|
|
CFLAGS+= -I${GDBDIR}/libiberty/.
|
|
CFLAGS+= -I${GDBDIR}/gdb/config/.
|
|
CFLAGS+= -DHAVE_CONFIG_H
|
|
.endif
|