Fix makefile
This commit is contained in:
parent
450bc86905
commit
cca9d03c13
1 changed files with 1 additions and 1 deletions
2
Makefile
2
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)
|
||||
|
|
Loading…
Reference in a new issue