1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00
samba-mirror/examples/appliance/Makefile
Tim Potter bf302c5447 Updated samba appliance example.
(This used to be commit e42f2fc397)
2000-06-05 12:58:47 +00:00

69 lines
1.4 KiB
Makefile

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)