Skip to content
Snippets Groups Projects
Commit e58db703 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Fix the build to link with the new sauce.o file

parent 2a8e1c11
Branches
Tags
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #1998 failed
...@@ -216,9 +216,9 @@ $(JSEXEC): $(JSEXEC_OBJS) $(SBBS) ...@@ -216,9 +216,9 @@ $(JSEXEC): $(JSEXEC_OBJS) $(SBBS)
$(QUIET)$(CXX) $(LDFLAGS) $(MT_LDFLAGS) -o $@ $(JSEXEC_OBJS) -lsbbs $(JS_LIBS) $(SMBLIB_LIBS) $(UIFC-MT_LIBS) $(CIOLIB-MT_LIBS) $(XPDEV-MT_LIBS) $(QUIET)$(CXX) $(LDFLAGS) $(MT_LDFLAGS) -o $@ $(JSEXEC_OBJS) -lsbbs $(JS_LIBS) $(SMBLIB_LIBS) $(UIFC-MT_LIBS) $(CIOLIB-MT_LIBS) $(XPDEV-MT_LIBS)
# ANS2ASC # ANS2ASC
$(ANS2ASC): $(OBJODIR)/ans2asc.o $(ANS2ASC): $(OBJODIR)/ans2asc.o $(OBJODIR)/sauce.o $(XPDEV_LIB)
@echo Linking $@ @echo Linking $@
$(QUIET)$(CC) $(CONSOLE_LDFLAGS) -o $@ $(OBJODIR)/ans2asc.o $(QUIET)$(CC) $(CONSOLE_LDFLAGS) -lm -o $@ $?
# ASC2ANS # ASC2ANS
$(ASC2ANS): $(OBJODIR)/asc2ans.o $(ASC2ANS): $(OBJODIR)/asc2ans.o
......
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
#include "client.h" #include "client.h"
#include "dllexport.h" #include "dllexport.h"
#include "smblib.h" #include "smblib.h"
#include "sauce.h"
#include <stdbool.h> #include <stdbool.h>
......
...@@ -91,6 +91,7 @@ OBJS = $(MTOBJODIR)$(DIRSEP)ansiterm$(OFILE) \ ...@@ -91,6 +91,7 @@ OBJS = $(MTOBJODIR)$(DIRSEP)ansiterm$(OFILE) \
$(MTOBJODIR)$(DIRSEP)readmsgs$(OFILE)\ $(MTOBJODIR)$(DIRSEP)readmsgs$(OFILE)\
$(MTOBJODIR)$(DIRSEP)readtext$(OFILE)\ $(MTOBJODIR)$(DIRSEP)readtext$(OFILE)\
$(MTOBJODIR)$(DIRSEP)ringbuf$(OFILE)\ $(MTOBJODIR)$(DIRSEP)ringbuf$(OFILE)\
$(MTOBJODIR)$(DIRSEP)sauce$(OFILE)\
$(MTOBJODIR)$(DIRSEP)scandirs$(OFILE)\ $(MTOBJODIR)$(DIRSEP)scandirs$(OFILE)\
$(MTOBJODIR)$(DIRSEP)scansubs$(OFILE)\ $(MTOBJODIR)$(DIRSEP)scansubs$(OFILE)\
$(MTOBJODIR)$(DIRSEP)scfglib1$(OFILE)\ $(MTOBJODIR)$(DIRSEP)scfglib1$(OFILE)\
...@@ -190,6 +191,7 @@ SBBSECHO_OBJS = \ ...@@ -190,6 +191,7 @@ SBBSECHO_OBJS = \
$(OBJODIR)$(DIRSEP)msg_id$(OFILE) \ $(OBJODIR)$(DIRSEP)msg_id$(OFILE) \
$(OBJODIR)$(DIRSEP)msgdate$(OFILE) \ $(OBJODIR)$(DIRSEP)msgdate$(OFILE) \
$(OBJODIR)$(DIRSEP)getmail$(OFILE) \ $(OBJODIR)$(DIRSEP)getmail$(OFILE) \
$(OBJODIR)$(DIRSEP)sauce$(OFILE) \
$(SMB_OBJS) $(SMB_OBJS)
ECHOCFG_OBJS = \ ECHOCFG_OBJS = \
...@@ -211,7 +213,8 @@ ADDFILES_OBJS = \ ...@@ -211,7 +213,8 @@ ADDFILES_OBJS = \
$(OBJODIR)$(DIRSEP)dat_rec$(OFILE) \ $(OBJODIR)$(DIRSEP)dat_rec$(OFILE) \
$(OBJODIR)$(DIRSEP)userdat$(OFILE) \ $(OBJODIR)$(DIRSEP)userdat$(OFILE) \
$(OBJODIR)$(DIRSEP)msgdate$(OFILE) \ $(OBJODIR)$(DIRSEP)msgdate$(OFILE) \
$(OBJODIR)$(DIRSEP)filedat$(OFILE) $(OBJODIR)$(DIRSEP)filedat$(OFILE) \
$(OBJODIR)$(DIRSEP)sauce$(OFILE)
FILELIST_OBJS = \ FILELIST_OBJS = \
$(OBJODIR)$(DIRSEP)filelist$(OFILE) \ $(OBJODIR)$(DIRSEP)filelist$(OFILE) \
...@@ -224,6 +227,7 @@ FILELIST_OBJS = \ ...@@ -224,6 +227,7 @@ FILELIST_OBJS = \
$(OBJODIR)$(DIRSEP)str_util$(OFILE) \ $(OBJODIR)$(DIRSEP)str_util$(OFILE) \
$(OBJODIR)$(DIRSEP)dat_rec$(OFILE) \ $(OBJODIR)$(DIRSEP)dat_rec$(OFILE) \
$(OBJODIR)$(DIRSEP)filedat$(OFILE) \ $(OBJODIR)$(DIRSEP)filedat$(OFILE) \
$(OBJODIR)$(DIRSEP)sauce$(OFILE) \
$(OBJODIR)$(DIRSEP)userdat$(OFILE) $(OBJODIR)$(DIRSEP)userdat$(OFILE)
MAKEUSER_OBJS = \ MAKEUSER_OBJS = \
...@@ -320,6 +324,7 @@ DELFILES_OBJS = \ ...@@ -320,6 +324,7 @@ DELFILES_OBJS = \
$(OBJODIR)$(DIRSEP)ars$(OFILE) \ $(OBJODIR)$(DIRSEP)ars$(OFILE) \
$(OBJODIR)$(DIRSEP)nopen$(OFILE) \ $(OBJODIR)$(DIRSEP)nopen$(OFILE) \
$(OBJODIR)$(DIRSEP)filedat$(OFILE) \ $(OBJODIR)$(DIRSEP)filedat$(OFILE) \
$(OBJODIR)$(DIRSEP)sauce$(OFILE) \
$(OBJODIR)$(DIRSEP)userdat$(OFILE) \ $(OBJODIR)$(DIRSEP)userdat$(OFILE) \
$(OBJODIR)$(DIRSEP)dat_rec$(OFILE) $(OBJODIR)$(DIRSEP)dat_rec$(OFILE)
...@@ -359,6 +364,7 @@ FMSGDUMP_OBJS = $(OBJODIR)$(DIRSEP)fmsgdump$(OFILE) ...@@ -359,6 +364,7 @@ FMSGDUMP_OBJS = $(OBJODIR)$(DIRSEP)fmsgdump$(OFILE)
UPGRADE_TO_V319_OBJS = $(OBJODIR)$(DIRSEP)upgrade_to_v319$(OFILE) \ UPGRADE_TO_V319_OBJS = $(OBJODIR)$(DIRSEP)upgrade_to_v319$(OFILE) \
$(OBJODIR)$(DIRSEP)filedat$(OFILE) \ $(OBJODIR)$(DIRSEP)filedat$(OFILE) \
$(OBJODIR)$(DIRSEP)sauce$(OFILE) \
$(OBJODIR)$(DIRSEP)userdat$(OFILE) \ $(OBJODIR)$(DIRSEP)userdat$(OFILE) \
$(OBJODIR)$(DIRSEP)dat_rec$(OFILE) \ $(OBJODIR)$(DIRSEP)dat_rec$(OFILE) \
$(OBJODIR)$(DIRSEP)load_cfg$(OFILE) \ $(OBJODIR)$(DIRSEP)load_cfg$(OFILE) \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment