1f1b9d127SSheldon Hearn# SMBFS build configuration 2f1b9d127SSheldon Hearn# copy this file to config.mk and edit as needed. 3f1b9d127SSheldon Hearn# If you want to disable an option just comment it with '#' char. 4f1b9d127SSheldon Hearn# 5f1b9d127SSheldon Hearn# $Id: config.mk.in,v 1.16 2001/04/16 04:34:26 bp Exp $ 6f1b9d127SSheldon Hearn 7f1b9d127SSheldon Hearn# Where your kernel source tree located (/usr/src/sys for example) 8f1b9d127SSheldon HearnSYSDIR=/usr/src/sys 9f1b9d127SSheldon Hearn 10f1b9d127SSheldon Hearn# Where the kernel module gets installed 11f1b9d127SSheldon HearnKMODDIR=/modules 12f1b9d127SSheldon Hearn 13f1b9d127SSheldon Hearn# Where all files get installed 14f1b9d127SSheldon HearnPREFIX?=/usr/local 15f1b9d127SSheldon Hearn 16f1b9d127SSheldon Hearn# Build shared smb library, or link all executables statically 17f1b9d127SSheldon HearnUSE_SHAREDLIBS=no 18f1b9d127SSheldon Hearn 19f1b9d127SSheldon Hearn# Comment this to disable support for encrypted passwords (requires 20f1b9d127SSheldon Hearn# src/sys/crypto directory). By default, NT and Win* machines use encrypted 21f1b9d127SSheldon Hearn# passwords. 22f1b9d127SSheldon HearnENCRYPTED_PASSWD=yes 23f1b9d127SSheldon Hearn 24f1b9d127SSheldon Hearn# Uncomment this option if kernel compiled with SMP suppport. 25f1b9d127SSheldon Hearn# SMP_SUPPORT= 26f1b9d127SSheldon Hearn 27f1b9d127SSheldon Hearn# This turns on debug logging, be careful - it produces a lot of kernel 28f1b9d127SSheldon Hearn# messages. 29f1b9d127SSheldon Hearn#KDEBUG+= -DSMB_SOCKET_DEBUG 30f1b9d127SSheldon Hearn#KDEBUG+= -DSMB_SOCKETDATA_DEBUG 31f1b9d127SSheldon Hearn#KDEBUG+= -DSMB_VNODE_DEBUG 32f1b9d127SSheldon Hearn 33f1b9d127SSheldon Hearn# Compile binaries with debugging symbols 34f1b9d127SSheldon Hearn#SMBGDB=yes 35f1b9d127SSheldon Hearn 36f1b9d127SSheldon Hearn# Build kernel module (don't touch that) 37f1b9d127SSheldon HearnSINGLEKLD=yes 38