mirror of
https://github.com/qpdf/qpdf.git
synced 2024-12-22 19:08:59 +00:00
ar, ranlib
git-svn-id: svn+q:///qpdf/trunk@760 71b93d88-0707-0410-a8cf-f5a4172ac649
This commit is contained in:
parent
7398ef88b7
commit
dd66ea8160
@ -18,6 +18,8 @@ LIBS=@LIBS@
|
|||||||
CPPFLAGS=@CPPFLAGS@
|
CPPFLAGS=@CPPFLAGS@
|
||||||
CXX=@CXX@
|
CXX=@CXX@
|
||||||
CXXFLAGS=@CXXFLAGS@
|
CXXFLAGS=@CXXFLAGS@
|
||||||
|
AR=@AR@
|
||||||
|
RANLIB=@RANLIB@
|
||||||
GENDEPS=@GENDEPS@
|
GENDEPS=@GENDEPS@
|
||||||
LIBTOOL=@LIBTOOL@
|
LIBTOOL=@LIBTOOL@
|
||||||
DOCBOOKX_DTD=@DOCBOOKX_DTD@
|
DOCBOOKX_DTD=@DOCBOOKX_DTD@
|
||||||
|
@ -45,8 +45,8 @@ endef
|
|||||||
# Usage: $(call makeslib,objs,library)
|
# Usage: $(call makeslib,objs,library)
|
||||||
define makeslib
|
define makeslib
|
||||||
$(RM) $2
|
$(RM) $2
|
||||||
ar cru $(2) $(1)
|
$(AR) cru $(2) $(1)
|
||||||
ranlib $(2)
|
$(RANLIB) $(2)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
# 1 2 3 4 5
|
# 1 2 3 4 5
|
||||||
|
@ -61,8 +61,8 @@ endef
|
|||||||
# Usage: $(call makeslib,objs,library)
|
# Usage: $(call makeslib,objs,library)
|
||||||
define makeslib
|
define makeslib
|
||||||
$(RM) $2
|
$(RM) $2
|
||||||
ar cru $(2) $(1)
|
$(AR) cru $(2) $(1)
|
||||||
ranlib $(2)
|
$(RANLIB) $(2)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
# 1 2 3 4 5
|
# 1 2 3 4 5
|
||||||
|
@ -39,8 +39,8 @@ libcompile = $(compile)
|
|||||||
# Usage: $(call makeslib,objs,library)
|
# Usage: $(call makeslib,objs,library)
|
||||||
define makeslib
|
define makeslib
|
||||||
$(RM) $2
|
$(RM) $2
|
||||||
ar cru $(2) $(1)
|
$(AR) cru $(2) $(1)
|
||||||
ranlib $(2)
|
$(RANLIB) $(2)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
# 1 2 3 4 5
|
# 1 2 3 4 5
|
||||||
|
Loading…
Reference in New Issue
Block a user