blob: c49451add86133b40a74f24407f619ea7ff41a64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
PREFIX=/usr/local/samba
CONFIGOPTS=--with-pam --prefix=$(PREFIX) --with-smbmount
all: headb tngb
config:
(cd head/source; CFLAGS="-Wall -O2 -g" ./configure $(CONFIGOPTS))
(cd tng; CFLAGS="-Wall -O2 -g" ./configure $(CONFIGOPTS) --enable-shared=no)
headb:
(cd head/source; make)
tngb:
(cd tng; make bin/samedit bin/winbindd nsswitch)
clean:
(cd head/source; make clean)
(cd tng; make clean)
proto:
(cd head/source; make proto)
(cd tng; make proto)
distclean:
(cd head/source; make clean; rm -f config.cache; rm -f Makefile)
(cd tng; make clean; rm -f config.cache; rm -f Makefile)
install: installhead installtng
installbin: installheadbin installtng
installhead:
(cd head/source; make install)
installheadbin:
(cd head/source; make installbin)
installtng: tngb
(cd tng; \
rm -f $(PREFIX)/bin/samedit $(PREFIX)/bin/winbindd; \
cp bin/samedit bin/winbindd $(PREFIX)/bin; \
rm -f /lib/libnss_winbind.so.2 /lib/security/pam_winbind.so; \
cp nsswitch/libnss_winbind.so /lib/libnss_winbind.so.2; \
cp nsswitch/pam_winbind.so /lib/security/)
stop:
-killall winbindd smbd nmbd
start:
$(PREFIX)/bin/smbd
$(PREFIX)/bin/nmbd
$(PREFIX)/bin/winbindd
restart: stop start
updatehead:
(cd head; cvs -z9 update -d)
updatetng:
(cd tng; cvs -z9 update -d)
update: updatehead updatetng
checkout:
-mkdir head tng
(cd head ; cvs -z9 co samba; mv samba head)
(cd head ; cvs -z9 co -r SAMBA_TNG samba/source; mv source tng)
|