From ed7a4314e628bf87e6e36e70d0f872aa93879f45 Mon Sep 17 00:00:00 2001 From: deuce <> Date: Mon, 13 Sep 2004 00:05:18 +0000 Subject: [PATCH] Move lib and mtlib targets into Common.make --- src/uifc/GNUmakefile | 3 --- src/uifc/targets.mk | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/uifc/GNUmakefile b/src/uifc/GNUmakefile index ee3d2429c3..d8897f0fb2 100644 --- a/src/uifc/GNUmakefile +++ b/src/uifc/GNUmakefile @@ -19,9 +19,6 @@ include $(SRC_ROOT)/build/Common.gmake # defines clean and output directory rule CFLAGS += -I$(XPDEV_SRC) $(CIOLIB-MT_CFLAGS) -lib: $(LIBODIR) $(UIFCLIB) -mtlib: $(LIBODIR) $(UIFCLIB-MT) - # UIFC Library Link Rule $(UIFCLIB): $(OBJODIR) $(OBJS) @echo Creating $@ ... diff --git a/src/uifc/targets.mk b/src/uifc/targets.mk index 0984f64ecb..576f966632 100644 --- a/src/uifc/targets.mk +++ b/src/uifc/targets.mk @@ -1,3 +1,6 @@ UIFCLIB = $(LIBODIR)$(DIRSEP)$(LIBPREFIX)uifc$(LIBFILE) UIFCLIB-MT = $(LIBODIR)$(DIRSEP)$(LIBPREFIX)uifc-mt$(LIBFILE) all: lib mtlib + +lib: $(LIBODIR) $(UIFCLIB) +mtlib: $(LIBODIR) $(UIFCLIB-MT) -- GitLab