]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/smbfs/Makefile.inc
Import smbfs-1.4.1.
[FreeBSD/FreeBSD.git] / contrib / smbfs / Makefile.inc
1 # $Id: Makefile.inc,v 1.9 2001/04/16 04:34:26 bp Exp $
2
3 .ifmake !clean && !cleandepend
4 .if !defined(PREFIX)
5 .include "config.int"
6 .endif
7 .endif
8
9 BINDIR?=${PREFIX}/bin
10 SMBSBINDIR=${PREFIX}/sbin
11 MANDIR=${PREFIX}/man/man
12
13 CFLAGS  += -Wall -I../kernel/mysys
14
15 .include <bsd.libnames.mk>
16
17 .if !defined(LIBSMB) || defined(COMPLETEBUILD)
18 CFLAGS  += -L../lib/smb -L../lib/nb
19 CFLAGS  += -I../include
20 LIBSMB  = ../lib/smb/libsmb.a
21 .endif
22
23 .if !exists(${SYSDIR}/netsmb/smb.h)
24 CFLAGS  += -I../kernel
25 .endif
26
27 .if defined(SMBGDB)
28 CFLAGS+= -ggdb
29 .endif
30
31 deinstall:
32         @(if test -f ${BINDIR}/${PROG}; then \
33                 echo removing ${BINDIR}/${PROG}; \
34                 rm -f ${BINDIR}/${PROG}; \
35         fi;)
36         @(if test -f ${MANDIR}1/${MAN1}.gz ; then \
37                 echo removing ${MANDIR}1/${MAN1}.gz; \
38                 rm -f ${MANDIR}1/${MAN1}.gz; \
39         fi;)
40         @(if test -f ${MANDIR}8/${MAN8}.gz ; then \
41                 echo removing ${MANDIR}8/${MAN8}.gz; \
42                 rm -f ${MANDIR}8/${MAN8}.gz; \
43         fi;)