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)