summaryrefslogtreecommitdiff
path: root/source3/Makefile.in
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>1998-08-11 02:13:01 +0000
committerJeremy Allison <jra@samba.org>1998-08-11 02:13:01 +0000
commit9042aa41c3c54e8dce600338cd4b796b65aaf066 (patch)
tree304c22f1553b8e249ed74901245e95761f6e1ba1 /source3/Makefile.in
parentcd9bfc6310b7a3a792840525f52392c2de9db451 (diff)
downloadsamba-9042aa41c3c54e8dce600338cd4b796b65aaf066.tar.gz
samba-9042aa41c3c54e8dce600338cd4b796b65aaf066.tar.bz2
samba-9042aa41c3c54e8dce600338cd4b796b65aaf066.zip
Makefile.in: Added CHECK target back in (at Herb's request). Added
manpath in (although we don't currently use it). client/client.c: Added John Blair's fixes for "put -". include/nterr.h: Added NT_STATUS_NOTIFY_ENUM_DIR error code. smbd/nttrans.c: Added in devious fix for one-shot NT change notify bug. Jeremy. (This used to be commit 4ac3091e57e9ab234b3c051333ba521a92defa99)
Diffstat (limited to 'source3/Makefile.in')
-rw-r--r--source3/Makefile.in7
1 files changed, 6 insertions, 1 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in
index f0cc4d30ee..4d6969363a 100644
--- a/source3/Makefile.in
+++ b/source3/Makefile.in
@@ -5,6 +5,7 @@
prefix=@prefix@
exec_prefix=@exec_prefix@
+mandir=@mandir@
INSTALL_BIN=$(exec_prefix)/bin
INSTALL_MAN=$(prefix)/man
@@ -187,11 +188,15 @@ PROTO_OBJ = $(SMBD_OBJ) $(NMBD_OBJ) $(SWAT_OBJ) $(CLIENT_OBJ)
# now the rules...
######################################################################
-all : $(SPROGS) $(PROGS)
+all : CHECK $(SPROGS) $(PROGS)
.SUFFIXES:
.SUFFIXES: .c .o .h
+CHECK:
+ @echo "Using FLAGS = $(FLAGS)"
+ @echo "Using LIBS = $(LIBS)"
+
.c.o: $(INCLUDES)
@echo Compiling $*.c
@$(CC) -I. -I$(srcdir) $(FLAGS) -c $< -o $@