#
# Makefile.preamble-winnt
#
# For PR2 of OpenStep for Windows, building a framework requires manually creating the .DEF
# file declaring all symbols to be exported by the framework DLL.  Fortunately, we
# can automate this process in out makefile.
#
# WARNING: This technique is not sufficient if your framework exports extern pointers to
# data or functions.  It does, however, work for classes, categories, and methods.

DEFFILE = $(OFILE_DIR)/$(NAME).def 
OTHER_PRODUCT_DEPENDS += $(DEFFILE)
OTHER_LIBTOOL_FLAGS += -def $(DEFFILE)
