ifeq ($(GNUSTEP_HOST_OS), mingw32)

include $(GNUSTEP_MAKEFILES)/common.make
TOOL_NAME = TestTool
TestTool_OBJC_FILES = TestTool_main.m
TestTool_C_FILES = 
TestTool_TOOL_LIBS +=  -lTestFrame
#include GNUmakefile.preamble
include $(GNUSTEP_MAKEFILES)/tool.make

else
include $(GNUSTEP_MAKEFILES)/common.make
GNUSTEP_BUILD_DIR = /Build/TestTool
TOOL_NAME = TestTool
TestTool_OBJC_FILES = TestTool_main.m
TestTool_C_FILES = 
ifeq ($(FOUNDATION_LIB), apple)
ADDITIONAL_INCLUDE_DIRS +=  -framework TestFrame
TestTool_TOOL_LIBS +=  -framework TestFrame
else
# The following line raises gcc: cannot specify -o with -c or -S and multiple compilations on Solaris
# ADDITIONAL_INCLUDE_DIRS += -framework FBEnterprise
# we therefore omit the frameworks inclusion; it works without it
ADDITIONAL_INCLUDE_DIRS +=
TestTool_LIB_DIRS +=
TestTool_TOOL_LIBS +=  -lTestFrame
endif
include GNUmakefile.preamble
include $(GNUSTEP_MAKEFILES)/tool.make
ifeq ($(FOUNDATION_LIB), apple)
include GNUmakefile_Apple.postamble
else
include GNUmakefile_GNUstep.postamble
endif
endif
