Skip to content
Snippets Groups Projects
Commit 48880f08 authored by deuce's avatar deuce
Browse files

Fix library depends (This was fixed a while ago, but I forgot to commit it!)

parent 7656e0cd
No related branches found
No related tags found
No related merge requests found
...@@ -21,14 +21,8 @@ CFLAGS += -I$(XPDEV_SRC) ...@@ -21,14 +21,8 @@ CFLAGS += -I$(XPDEV_SRC)
# SMBLIB Library Link Rule # SMBLIB Library Link Rule
$(SMBLIB): $(OBJODIR) $(OBJS) $(SMBLIB_BUILD): $(OBJODIR) $(OBJS)
@echo Creating $@ ... @echo Creating $@ ...
$(QUIET)ar rc $@ $(OBJS) $(QUIET)ar rc $@ $(OBJS)
$(QUIET)ranlib $@ $(QUIET)ranlib $@
# SMBLIB Library Link Rule
$(SMBLIB-MT): $(MTOBJODIR) $(MTOBJS)
@echo Creating $@ ...
$(QUIET)ar rc $@ $(MTOBJS)
$(QUIET)ranlib $@
...@@ -21,10 +21,10 @@ SRC_ROOT = .. ...@@ -21,10 +21,10 @@ SRC_ROOT = ..
# Cross platform/compiler definitions # Cross platform/compiler definitions
!include ..\build\Common.bmake # defines clean and output directory rules !include ..\build\Common.bmake # defines clean and output directory rules
CFLAGS = $(CFLAGS) -I$(XPDEV_SRC) CFLAGS = $(CFLAGS) -I$(XPDEV_SRC) -DWRAPPER_IMPORTS -DSMB_IMPORTS
# SBBS DLL Link Rule # SBBS DLL Link Rule
$(SMBLIB): $(OBJS) $(SMBLIB_BUILD): $(OBJS)
@echo Creating $< ... @echo Creating $< ...
-$(QUIET)$(DELETE) $@ -$(QUIET)$(DELETE) $@
&$(QUIET)tlib $@ +$** &$(QUIET)tlib $@ +$**
......
# smblib/targets.mk # smblib/targets.mk
lib: $(OBJODIR) $(LIBODIR) $(SMBLIB)
\ No newline at end of file SMBLIB_BUILD = $(LIBODIR)$(DIRSEP)$(LIBPREFIX)smb$(LIBFILE)
lib: $(OBJODIR) $(LIBODIR) $(SMBLIB_BUILD)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment