From ea4b32d3264824fba0faddb70d3a34444b0edba4 Mon Sep 17 00:00:00 2001 From: ceriel Date: Thu, 14 Jan 1988 14:10:51 +0000 Subject: [PATCH] parameterize archiver used --- modules/src/system/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/src/system/Makefile b/modules/src/system/Makefile index 3762891fa..0b40ba7e8 100644 --- a/modules/src/system/Makefile +++ b/modules/src/system/Makefile @@ -5,6 +5,7 @@ COMPARE = $(MODULES)/compare LIBSYS = libsystem.a INCLUDES = -I. CFLAGS = $(INCLUDES) -O +AR = ar OBJ = access.o break.o chmode.o close.o create.o filesize.o \ modtime.o lock.o open.o read.o remove.o stop.o \ system.o time.o unlock.o write.o seek.o @@ -17,7 +18,7 @@ all: $(LIBSYS) $(LIBSYS): $(OBJ) rm -f $(LIBSYS) - ar r $(LIBSYS) $(OBJ) + $(AR) r $(LIBSYS) $(OBJ) -sh -c 'ranlib $(LIBSYS)' install: all -- 2.34.1