From 855728724f62c6af22210de122d87cbe19f53fa3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Ho=C5=A1ek?= Date: Fri, 22 Nov 2013 01:02:12 +0100 Subject: [PATCH] HLExtract: make hlextract depend on libhl.a in the Makefile --- HLExtract/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/HLExtract/Makefile b/HLExtract/Makefile index a0bd1cc..ce8dc89 100644 --- a/HLExtract/Makefile +++ b/HLExtract/Makefile @@ -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