mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 04:00:07 +08:00
ar called through parametarizable macro.
This commit is contained in:
@ -22,7 +22,8 @@
|
|||||||
srcdir = .
|
srcdir = .
|
||||||
|
|
||||||
RANLIB = ranlib
|
RANLIB = ranlib
|
||||||
AR =
|
AR = ar
|
||||||
|
AR_FLAGS = clq
|
||||||
INCDIR = $(srcdir)/../include
|
INCDIR = $(srcdir)/../include
|
||||||
CSEARCH = -I$(INCDIR)
|
CSEARCH = -I$(INCDIR)
|
||||||
DEP = mkdep
|
DEP = mkdep
|
||||||
@ -55,8 +56,8 @@ OFILES = $(BFD_LIBS) $(BFD_BACKENDS)
|
|||||||
|
|
||||||
$(TARGETLIB): $(OFILES)
|
$(TARGETLIB): $(OFILES)
|
||||||
rm -f $(TARGETLIB)
|
rm -f $(TARGETLIB)
|
||||||
ar clq $(TARGETLIB) $(OFILES)
|
$(AR) $(AR_FLAGS) $(TARGETLIB) $(OFILES)
|
||||||
ranlib $(TARGETLIB)
|
$(RANLIB) $(TARGETLIB)
|
||||||
|
|
||||||
stage1: force
|
stage1: force
|
||||||
- mkdir stage1
|
- mkdir stage1
|
||||||
|
Reference in New Issue
Block a user