commit 3266af10c9e7237e0d4b115dab6ad02de2e40ea6 parent 97a264a39779c9e72c96a27bdf400eb9afa7ddca Author: finwo <finwo@pm.me> Date: Thu, 7 May 2026 23:16:51 +0200 Compile statically for portable executables Diffstat:
| M | Makefile | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile @@ -16,7 +16,7 @@ src/detector/dirtyfrag.o: CFLAGS += -Dmain=dirtyfrag_main_hidden $(CC) $< $(CFLAGS) -c -o $@ $(BIN): $(OBJ) - $(CC) $(OBJ) $(LDFLAGS) -s -o $@ + $(CC) $(OBJ) $(LDFLAGS) -static -s -o $@ .PHONY: clean clean: