From 178f205d440c33b3f456e2cadf84a50a7cfcffee Mon Sep 17 00:00:00 2001 From: Philippe Pittoli Date: Tue, 17 Jan 2023 04:42:05 +0100 Subject: [PATCH] Minor fix for the drop/Makefile (two '-o' options). --- zig-impl/drop/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zig-impl/drop/Makefile b/zig-impl/drop/Makefile index e7bbbff..4931f51 100644 --- a/zig-impl/drop/Makefile +++ b/zig-impl/drop/Makefile @@ -29,7 +29,7 @@ zigcompilation: build.zig src/*.zig compilation: src/main.c @echo the following compilation will produce errors despite actually working - $(CC) -o app -o main build/libipc.so $(CFLAGS) $^ $(LDFLAGS) + $(CC) -o main build/libipc.so $(CFLAGS) $^ $(LDFLAGS) run: LD_LIBRARY_PATH=build ./main