HLExtract: make hlextract depend on libhl.a in the Makefile

This commit is contained in:
Ondřej Hošek 2013-11-22 01:02:12 +01:00
parent 880077d94c
commit 855728724f
1 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ clean:
install: hlextract
install -g root -m 0755 -o root hlextract $(PREFIX)/bin
hlextract: Main.o
$(CXX) $(LDFLAGS) -o $@ $^ ../HLLib/libhl.a
hlextract: Main.o ../HLLib/libhl.a
$(CXX) $(LDFLAGS) -o $@ $^
.PHONY: all clean install