Skip to content

Commit

Permalink
arg "s" added to ar call in Makefiles
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Blätte authored and Andreas Blätte committed Jun 16, 2023
1 parent 6b47904 commit c6df1cc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/cwb/cl/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ all: libcl.a $(EXTRA_OBJS)

libcl.a: $(OBJS)
$(RM) $@
$(AR) cq $@ $^
$(AR) cqs $@ $^

install: libcl.a
ifndef __MINGW__
Expand Down
2 changes: 1 addition & 1 deletion src/cwb/cqp/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ all: libcqp.a
parser.tab.c parser.tab.h: parser.y
libcqp.a: $(OBJS) $(CQI_OBJS)
$(RM) $@
$(AR) cq $@ $^
$(AR) cqs $@ $^

cqp$(EXEC_SUFFIX): $(OBJS) $(CQP_OBJS) llquery.o $(LIBCL_PATH)
@$(ECHO) " .... link executable" $@
Expand Down
2 changes: 1 addition & 1 deletion src/cwb/utils/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ all: libcwb.a
libcwb.a: $(OBJS)
@$(ECHO) "--------------------------------- CREATING ARCHIVE"
$(RM) $@
$(AR) cq $@ $^
$(AR) cqs $@ $^

cwb-encode.o: cwb-encode.c
${CC} -c $(CFLAGS_ALL) -o cwb-encode.o cwb-encode.c
Expand Down

0 comments on commit c6df1cc

Please sign in to comment.