Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | ${VAR} -> $(VAR) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
6ea56e7b5f799be5c1f81ff68cb1e051 |
User & Date: | stu 2017-12-16 17:09:09.388 |
Context
2017-12-22
| ||
14:12 | convert all win/*.vc files to crlf style check-in: c0e7395994 user: jan.nijtmans tags: trunk | |
2017-12-16
| ||
17:09 | ${VAR} -> $(VAR) check-in: 6ea56e7b5f user: stu tags: trunk | |
2017-12-09
| ||
13:30 | TIP 477: New nmake build system check-in: 69bfd8f142 user: apnadkarni tags: trunk | |
Changes
Changes to Makefile.in.
︙ | ︙ | |||
82 83 84 85 86 87 88 | pkgdatadir = $(datadir)/$(PKG_DIR) pkglibdir = $(libdir)/$(PKG_DIR) pkgincludedir = $(includedir)/$(PKG_DIR) top_builddir = . INSTALL_OPTIONS = | | | 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | pkgdatadir = $(datadir)/$(PKG_DIR) pkglibdir = $(libdir)/$(PKG_DIR) pkgincludedir = $(includedir)/$(PKG_DIR) top_builddir = . INSTALL_OPTIONS = INSTALL = @INSTALL@ $(INSTALL_OPTIONS) INSTALL_DATA_DIR = @INSTALL_DATA_DIR@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_LIBRARY = @INSTALL_LIBRARY@ PACKAGE_NAME = @PACKAGE_NAME@ |
︙ | ︙ | |||
234 235 236 237 238 239 240 | @list='$(srcdir)/doc/*.n'; for i in $$list; do \ echo "Installing $$i"; \ $(INSTALL_DATA) $$i $(DESTDIR)$(mandir)/mann ; \ done test: binaries libraries $(TCLSH) `@CYGPATH@ $(srcdir)/tests/all.tcl` $(TESTFLAGS) \ | | | 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 | @list='$(srcdir)/doc/*.n'; for i in $$list; do \ echo "Installing $$i"; \ $(INSTALL_DATA) $$i $(DESTDIR)$(mandir)/mann ; \ done test: binaries libraries $(TCLSH) `@CYGPATH@ $(srcdir)/tests/all.tcl` $(TESTFLAGS) \ -load "package ifneeded $(PACKAGE_NAME) $(PACKAGE_VERSION) \ [list load `@CYGPATH@ $(PKG_LIB_FILE)` $(PACKAGE_NAME)]" shell: binaries libraries @$(TCLSH) $(SCRIPT) gdb: $(TCLSH_ENV) gdb $(TCLSH_PROG) $(SCRIPT) |
︙ | ︙ |