diff options
author | jan.nijtmans <jan.nijtmans@noemail.net> | 2015-11-16 10:55:42 (GMT) |
---|---|---|
committer | jan.nijtmans <jan.nijtmans@noemail.net> | 2015-11-16 10:55:42 (GMT) |
commit | a973f5dde2b625daf5c6fe7fd403c04190dee43a (patch) | |
tree | 2734573ac9954bee7ad48f5483afa1af35cf5ad7 | |
parent | 97ff6780700254f25e298205023bc6edaa518f67 (diff) | |
parent | ec6c475e07f96cfaf7ed7a35c8e6815f3c1c7b95 (diff) | |
download | tcl-a973f5dde2b625daf5c6fe7fd403c04190dee43a.zip tcl-a973f5dde2b625daf5c6fe7fd403c04190dee43a.tar.gz tcl-a973f5dde2b625daf5c6fe7fd403c04190dee43a.tar.bz2 |
Fix --enable-symbols build on Cygwin. Reported by François Vogel
FossilOrigin-Name: bd5464f13d78c391c5a7b3ed60fd6a1aee608d48
-rw-r--r-- | unix/Makefile.in | 2 | ||||
-rw-r--r-- | win/Makefile.in | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index c90fd16..da43c5d 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -628,7 +628,7 @@ ${LIB_FILE}: ${STUB_LIB_FILE} ${OBJS} ${STUB_LIB_FILE}: ${STUB_LIB_OBJS} @if test "x${LIB_FILE}" = "xlibtcl${MAJOR_VERSION}.${MINOR_VERSION}.dll"; then \ - (cd ${TOP_DIR}/win; ${MAKE} tcldde14.dll tclreg13.dll); \ + (cd ${TOP_DIR}/win; ${MAKE} winextensions); \ fi rm -f $@ @MAKE_STUB_LIB@ diff --git a/win/Makefile.in b/win/Makefile.in index 132721a..7e6486c 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -419,7 +419,9 @@ all: binaries libraries doc packages tcltest: $(TCLSH) $(TEST_DLL_FILE) -binaries: $(TCL_STUB_LIB_FILE) @LIBRARIES@ $(DDE_DLL_FILE) $(REG_DLL_FILE) $(TCLSH) +binaries: $(TCL_STUB_LIB_FILE) @LIBRARIES@ winextensions $(TCLSH) + +winextensions: ${DDE_DLL_FILE} ${REG_DLL_FILE} libraries: |