From 02d9a998c3fb0a3b57e090bc0d91741c55c4d56a Mon Sep 17 00:00:00 2001 From: jakcron Date: Tue, 7 Aug 2018 13:30:52 +0800 Subject: [PATCH] Update makefiles --- lib/makefile | 2 +- programs/nstool/makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/makefile b/lib/makefile index 7928e45..c39f843 100644 --- a/lib/makefile +++ b/lib/makefile @@ -1,4 +1,4 @@ -LIBS = libfnd libcrypto libcompress libes libpki libnx libnx-hb +LIBS = libfnd libpolarssl liblz4 libcrypto libcompress libes libpki libhac libhac-hb main: build rebuild: clean build diff --git a/programs/nstool/makefile b/programs/nstool/makefile index ddbdcd3..3b5bc7d 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-hb nx es pki crypto compress fnd +DEPENDS = hac-hb hac es pki crypto compress polarssl lz4 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")