Fix makefile

This commit is contained in:
ave 2020-12-04 21:19:17 +00:00
parent 450bc86905
commit cca9d03c13
1 changed files with 1 additions and 1 deletions

View File

@ -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)