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

Clean up uifc build... it was actually recursively calling itself. :(

parent bfd316c4
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,7 @@ include $(SRC_ROOT)/build/Common.gmake # defines clean and output directory rule
CFLAGS += -I$(XPDEV_SRC) $(CIOLIB-MT_CFLAGS) $(XPDEV-MT_CFLAGS)
# MT-UIFC Library Link Rule
$(UIFCLIB-MT_BUILD): ciolib-mt $(MT_OBJS)
$(UIFCLIB-MT_BUILD): $(CIOLIB-MT) $(MT_OBJS) | $(MTOBJODIR) $(LIBODIR)
@echo Creating $@ ...
$(QUIET)$(AR) rc $@ $(MT_OBJS)
$(QUIET)$(RANLIB) $@
......
......@@ -2,12 +2,11 @@ UIFCTEST = $(EXEODIR)$(DIRSEP)uifctest$(EXEFILE)
UIFCLIB_BUILD = $(LIBODIR)$(DIRSEP)$(LIBPREFIX)uifc$(LIBFILE)
UIFCLIB-MT_BUILD = $(LIBODIR)$(DIRSEP)$(LIBPREFIX)uifc_mt$(LIBFILE)
all: mtlib test
all: $(UIFCLIB-MT_BUILD) $(UIFCTEST)
test: xpdev-mt ciolib-mt mtlib $(EXEODIR) $(UIFCTEST)
mtlib: $(MTOBJODIR) $(LIBODIR) $(UIFCLIB-MT_BUILD)
mtlib: $(UIFCLIB-MT_BUILD)
# Library dependencies.
$(UIFCTEST): $(CIOLIB-MT) $(XPDEV-MT_LIB) $(UIFCLIB-MT) mtlib
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