Commit 320327f8 authored by Adam Wujek's avatar Adam Wujek 💬

lib: use ar from env variable

Signed-off-by: Adam Wujek's avatarAdam Wujek <adam.wujek@cern.ch>
parent 0df048d9
......@@ -8,7 +8,6 @@
# include parent_common.mk for buildsystem's defines
REPO_PARENT=../..
-include $(REPO_PARENT)/parent_common.mk
#ZIO := $(shell ../scripts/check-submodule zio $(ZIO))
ZIO ?= ../zio
......@@ -28,7 +27,7 @@ lib: $(LIB)
$(CC) $(CFLAGS) $*.c $(LDFLAGS) -o $@
$(LIB): $(LOBJ)
ar r $@ $^
$(AR) r $@ $^
clean:
rm -f $(LIB) .depend *.o *~
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment