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)
|
all: $(TARGET)
|
||||||
|
|
||||||
$(TARGET): $(TARGET).cpp
|
$(TARGET): $(TARGET).cpp
|
||||||
$(CC) $(CFLAGS) $(LIBS) -o $(TARGET) $(DEPS) $(TARGET).cpp
|
$(CC) $(CFLAGS) -o $(TARGET) $(DEPS) $(TARGET).cpp $(LIBS)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
$(RM) $(TARGET)
|
$(RM) $(TARGET)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue