This case is quite simple - you write a usual GNUmakefile for your library:
include $(GNUSTEP_MAKEFILES)/common.make LIBRARY_NAME = libNicola libNicola_OBJC_FILES = two.m include GNUmakefile.preamble include $(GNUSTEP_MAKEFILES)/library.makeand add a GNUmakefile.preamble in which you tell the make package that this library depends on the library libHelloWorld:
libNicola_LIBRARIES_DEPEND_UPON += -lHelloWorld