Skip to content
Snippets Groups Projects
Commit 70b721a0 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Remove single-threaded library support

It didn't work anyway.
parent 7e8b259a
No related branches found
No related tags found
No related merge requests found
Pipeline #5554 failed
......@@ -19,12 +19,6 @@ include $(SRC_ROOT)/build/Common.gmake # defines clean and output directory rule
CFLAGS += -I$(XPDEV_SRC) $(CIOLIB-MT_CFLAGS) $(XPDEV-MT_CFLAGS)
# UIFC Library Link Rule
$(UIFCLIB_BUILD): ciolib $(OBJS)
@echo Creating $@ ...
$(QUIET)$(AR) rc $@ $(OBJS)
$(QUIET)$(RANLIB) $@
# MT-UIFC Library Link Rule
$(UIFCLIB-MT_BUILD): ciolib-mt $(MT_OBJS)
@echo Creating $@ ...
......
......@@ -2,11 +2,10 @@ UIFCTEST = $(EXEODIR)$(DIRSEP)uifctest$(EXEFILE)
UIFCLIB_BUILD = $(LIBODIR)$(DIRSEP)$(LIBPREFIX)uifc$(LIBFILE)
UIFCLIB-MT_BUILD = $(LIBODIR)$(DIRSEP)$(LIBPREFIX)uifc_mt$(LIBFILE)
all: lib mtlib test
all: mtlib test
test: xpdev-mt ciolib-mt mtlib $(EXEODIR) $(UIFCTEST)
lib: $(OBJODIR) $(LIBODIR) $(UIFCLIB_BUILD)
mtlib: $(MTOBJODIR) $(LIBODIR) $(UIFCLIB-MT_BUILD)
# Library dependencies.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment