commit adb6821f7bbab5075746f352cda4000ef67c5f24
parent 622fa58f25ccfd6cea5835a57e51f3894aef5f14
Author: Yersa Nordman <finwo@pm.me>
Date: Sat, 12 Oct 2019 11:16:25 +0200
Build the right libmatter.a filename
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
@@ -6,8 +6,8 @@ LD = wasm-ld
TARGET ?= wasm32
CFLAGS ?= -O3
-matter.a: $(OBJ)
- ar rcs matter.a $(OBJ)
+libmatter.a: $(OBJ)
+ ar rcs libmatter.a $(OBJ)
%.o: %.c
$(CC) $(CFLAGS) --target=$(TARGET) -nostdinc -fno-builtin -Iinclude -c $< -o $@