From cca9d03c13c4c405ac8ea5b015bc75f1f31af3fb Mon Sep 17 00:00:00 2001 From: Ave Date: Fri, 4 Dec 2020 21:19:17 +0000 Subject: [PATCH] Fix makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 42394e3..b53e58d 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ TARGET = lfe all: $(TARGET) $(TARGET): $(TARGET).cpp - $(CC) $(CFLAGS) $(LIBS) -o $(TARGET) $(DEPS) $(TARGET).cpp + $(CC) $(CFLAGS) -o $(TARGET) $(DEPS) $(TARGET).cpp $(LIBS) clean: $(RM) $(TARGET)