From 73842c485f5f1da7ab14280aca70db9e05c2ad3e Mon Sep 17 00:00:00 2001
From: rswindell <>
Date: Sat, 11 Sep 2004 10:56:48 +0000
Subject: [PATCH] XPDEV(_SRC) is now defined in build/Common.bmake .path.c is
 now defined in build/Common.bmake Continue to build library even if delete
 fails (file doesn't exist).

---
 src/smblib/Makefile | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/src/smblib/Makefile b/src/smblib/Makefile
index 6664860e9f..1703c94a81 100644
--- a/src/smblib/Makefile
+++ b/src/smblib/Makefile
@@ -12,7 +12,6 @@
 
 # Macros
 #DEBUG	=	1				# Comment out for release (non-debug) version
-XPDEV	=	..\xpdev\		# Path to Cross-platform wrappers
 
 # Enable auto-dependency checking
 .autodepend
@@ -22,14 +21,12 @@ SRC_ROOT = ..
 # Cross platform/compiler definitions
 !include ..\build\Common.bmake	# defines clean and output directory rules
 
-CFLAGS = $(CFLAGS) -I$(XPDEV)
-
-.path.c = .;$(XPDEV)
+CFLAGS = $(CFLAGS) -I$(XPDEV_SRC)
 
 # SBBS DLL Link Rule
 $(SMBLIB): $(OBJS)
     @echo Creating $< ...
-	$(QUIET)$(DELETE) $@
+	-$(QUIET)$(DELETE) $@
 	$(QUIET)for %f in ($(OBJS)) do $(QUIET)tlib $@ +%f
 
 
-- 
GitLab