kopia lustrzana https://gitlab.com/sane-project/backends
* 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
rodzic
b0778e41a9
commit
fbae3e1b40
|
@ -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:
|
||||
|
||||
|
|
|
@ -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:
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue