commit 296ae6b2108c56efe846c6fa2c02f07543cc5955
parent f538c5a66ba7e4b14069defaa21596f1d5268f2f
Author: Yersa Nordman <finwo@pm.me>
Date: Sat, 12 Oct 2019 11:27:40 +0200
Different archive creation
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -8,7 +8,7 @@ SRC=$(shell find -L src/$(TARGET) -type f -name *.c)
OBJ=$(SRC:.c=.o)
libmatter.a: $(OBJ)
- ar rcs libmatter.a $(OBJ)
+ ar -cvq libmatter.a $(OBJ)
%.o: %.c
$(CC) $(CFLAGS) --target=$(TARGET) -nostdinc -fno-builtin -Iinclude -c $< -o $@