From 9042aa41c3c54e8dce600338cd4b796b65aaf066 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Tue, 11 Aug 1998 02:13:01 +0000 Subject: 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) --- source3/Makefile.in | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'source3/Makefile.in') 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 $@ -- cgit