From bd6c89c824bcb103224c26146e216af2fdc5bf7f Mon Sep 17 00:00:00 2001 From: celso Date: Mon, 9 Jan 2023 12:06:23 -0300 Subject: [PATCH] fixed typo in Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 428bcaf..90205a7 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ BIN = skomb all: $(BIN) $(BIN): - $(CC) $(CFLAGS) -O2 -DNDEBUG -Funroll-loops -march=native -s $(SRC)/$(BIN).c -o $(BINDIR)/$@ + $(CC) $(CFLAGS) -O2 -DNDEBUG -funroll-loops -march=native -s $(SRC)/$(BIN).c -o $(BINDIR)/$@ debug: $(CC) $(CFLAGS) -O0 -g $(SRC)/$(BIN).c -o $(BINDIR)/$(BIN)