* Fixed empty liblib.a, libsanei.a produced by libtool - '-static' flag

is now mentioned in both compile & link stages to tell 'libtool' that static
  library is being built (static libraries are disabled by default when
  configure produces libtool from ltmain.sh).
merge-requests/1/head
Ilia Sotnikov 2007-07-02 17:21:24 +00:00
rodzic b0778e41a9
commit fbae3e1b40
2 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -65,12 +65,12 @@ DISTFILES = Makefile.in alloca.c getenv.c getopt.c getopt1.c \
$(COMPILE) $<
.c.lo:
@$(LIBTOOL) $(MCOMP) $(COMPILE) $<
@$(LIBTOOL) $(MCOMP) $(COMPILE) -static $<
all: $(TARGETS)
liblib.a: $(LIBLIB_LTOBJS)
@$(LIBTOOL) $(MLINK) $(CC) $(LIBLIB_LTOBJS) -o $@
@$(LIBTOOL) $(MLINK) $(CC) -static $(LIBLIB_LTOBJS) -o $@
install:

Wyświetl plik

@ -81,12 +81,12 @@ DISTFILES = Makefile.in linux_sg3_err.h os2_srb.h sanei_DomainOS.c \
$(COMPILE) $<
.c.lo:
@$(LIBTOOL) $(MCOMP) $(COMPILE) $<
@$(LIBTOOL) $(MCOMP) $(COMPILE) -static $<
all: $(TARGETS)
libsanei.a: $(LIBSANEI_LTOBJS)
$(LIBTOOL) $(MLINK) $(CC) $(LIBSANEI_LTOBJS) -o $@
@$(LIBTOOL) $(MLINK) $(CC) -static $(LIBSANEI_LTOBJS) -o $@
install: