mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 16:23:25 -05:00
20 lines
320 B
Makefile
20 lines
320 B
Makefile
#
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../include
|
|
CFLAGS+= -I${.CURDIR}/../../kernel/mysys
|
|
CFLAGS+= -Wall ${BPCFLAGS}
|
|
|
|
.if !exists(${SYSDIR}/netsmb/smb.h)
|
|
CFLAGS+= -I${.CURDIR}/../../kernel
|
|
.else
|
|
CFLAGS+= -I${SYSDIR}
|
|
.endif
|
|
|
|
.if defined(SMBGDB)
|
|
CFLAGS+= -ggdb
|
|
.endif
|
|
|
|
CLEANFILES+=.depend
|
|
|
|
deinstall: deinstall-lib deinstall-src
|
|
|