fixed typo in Makefile
This commit is contained in:
parent
4838718a58
commit
bd6c89c824
2
Makefile
2
Makefile
|
@ -7,7 +7,7 @@ BIN = skomb
|
||||||
all: $(BIN)
|
all: $(BIN)
|
||||||
|
|
||||||
$(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:
|
debug:
|
||||||
$(CC) $(CFLAGS) -O0 -g $(SRC)/$(BIN).c -o $(BINDIR)/$(BIN)
|
$(CC) $(CFLAGS) -O0 -g $(SRC)/$(BIN).c -o $(BINDIR)/$(BIN)
|
||||||
|
|
Loading…
Reference in New Issue