695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
|
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
|
-
+
|
# TIP #430, ZipFS Support
tclZipfs.${OBJEXT}: $(GENERIC_DIR)/tclZipfs.c
$(CC) -c $(CC_SWITCHES) -DBUILD_tcl \
$(ZLIB_INCLUDE) -I$(MINIZIP_DIR_NATIVE) @DEPARG@ $(CC_OBJNAME)
MemoryModule.${OBJEXT}: $(WIN_DIR)/MemoryModule.c
$(CC) -c $(CC_SWITCHES) -DUNICODE @DEPARG@ $(CC_OBJNAME)
$(CC) -c $(CC_SWITCHES) -DUNICODE -D_UNICODE @DEPARG@ $(CC_OBJNAME)
# TIP #59, embedding of configuration information into the binary library.
#
# Part of Tcl's configuration information are the paths where it was installed
# and where it will look for its libraries (which can be different). We derive
# this information from the variables which can be overridden by the user. As
|