From 82aa069ba1711dd8b28f77d000aa5ccefbe9f559 Mon Sep 17 00:00:00 2001 From: jakcron Date: Sat, 9 Jun 2018 14:54:22 +0800 Subject: [PATCH] [nstool] Add compress as a makefile dependency. --- programs/nstool/makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/nstool/makefile b/programs/nstool/makefile index da01e4a..cc25b93 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 fnd +DEPENDS = 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")