From 99e4eee3eabc80978f7cfe18a746731a2dcaeeb8 Mon Sep 17 00:00:00 2001 From: jakcron Date: Sun, 10 Jun 2018 14:58:34 +0800 Subject: [PATCH] [nstool] Add nx-hb dependency --- programs/nstool/makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/nstool/makefile b/programs/nstool/makefile index cc25b93..85aa304 100644 --- a/programs/nstool/makefile +++ b/programs/nstool/makefile @@ -3,7 +3,7 @@ SRC_DIR = source OBJS = $(foreach dir,$(SRC_DIR),$(subst .cpp,.o,$(wildcard $(dir)/*.cpp))) $(foreach dir,$(SRC_DIR),$(subst .c,.o,$(wildcard $(dir)/*.c))) # External dependencies -DEPENDS = nx crypto compress fnd +DEPENDS = nx-hb nx crypto compress fnd LIB_DIR = ../../lib LIBS = $(foreach dep,$(DEPENDS), -L"$(LIB_DIR)/lib$(dep)" -l$(dep)) INCS = $(foreach dep,$(DEPENDS), -I"$(LIB_DIR)/lib$(dep)/include")