Lines Matching +full:dll +full:- +full:config

1 # Makefile.in --
10 # Copyright (c) 2002-2005 ActiveState Corporation.
149 INCLUDES = @PKG_INCLUDES@ @TCL_INCLUDES@ -I. -I$(srcdir)/..
177 VALGRINDARGS = --tool=memcheck --num-callers=8 --leak-resolution=high \
178 --leak-check=yes --show-reachable=yes -v
183 # Start of user-definable TARGETS section
189 # platform-dependent libraries. Modify these targets so that they install
197 # The binaries target builds executable programs, Windows .dll's, unix
198 # shared/static libraries, and any other platform-dependent files.
209 # and doc installs (see install-doc), which just install the docs on the
219 install: all install-binaries install-libraries install-doc
221 install-binaries: binaries install-lib-binaries install-bin-binaries
224 # This rule installs platform-independent files, such as header files.
225 # The list=...; for p in $$list handles the empty list case x-platform.
228 install-libraries: libraries
241 install-doc: doc
258 gdb-test: binaries libraries
260 --args $(TCLSH_PROG) `@CYGPATH@ $(srcdir)/tests/all.tcl` \
261 $(TESTFLAGS) -singleproc 1 \
262 -load "package ifneeded $(PACKAGE_NAME) $(PACKAGE_VERSION) \
285 -rm -f $(PKG_LIB_FILE)
290 -rm -f $(PKG_STUB_LIB_FILE)
302 # $(COMPILE) -c `@CYGPATH@ $(srcdir)/generic/sample.c` -o $@
312 $(COMPILE) -c `@CYGPATH@ $<` -o $@
317 printf "git-" >$(srcdir)/manifest.uuid
318 (cd $(srcdir); git rev-parse HEAD >>$(srcdir)/manifest.uuid || \
319 (printf "svn-r" >$(srcdir)/manifest.uuid ; \
320 svn info --show-item last-changed-revision >>$(srcdir)/manifest.uuid) || \
338 DIST_INSTALL_DATA = CPPROG='cp -p' $(INSTALL) -m 644
339 DIST_INSTALL_SCRIPT = CPPROG='cp -p' $(INSTALL) -m 755
341 dist-clean:
342 rm -rf $(DIST_DIR) $(DIST_ROOT)/$(PKG_DIR).tar.*
344 dist: dist-clean $(srcdir)/manifest.uuid
356 $(srcdir)/tclconfig/tcl.m4 $(srcdir)/tclconfig/install-sh \
370 if test -d $(srcdir)/$$p ; then \
379 # End of user-definable section
388 -test -z "$(BINARIES)" || rm -f $(BINARIES)
389 -rm -f *.$(OBJEXT) core *.core
390 -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
393 -rm -f *.tab.c
394 -rm -f $(CONFIG_CLEAN_FILES)
395 -rm -f config.cache config.log config.status
398 # Install binary object libraries. On Windows this includes both .dll and
400 # we need to deduce their existence from the .dll file of the same name.
408 install-lib-binaries: binaries
411 if test -f $$p; then \
414 ext=`echo $$p|sed -e "s/.*\.//"`; \
416 lib=`basename $$p|sed -e 's/.[^.]*$$//'`.lib; \
417 if test -f $$lib; then \
425 if test -f $(srcdir)/$$p; then \
437 # Install binary executables (e.g. .exe files and dependent .dll files)
439 # wish and tclsh), like dependent .dll files on Windows.
445 install-bin-binaries: binaries
448 if test -f $$p; then \
454 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
456 && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
458 uninstall-binaries:
460 rm -f "$(DESTDIR)$(pkglibdir)/$$p"; \
464 rm -f "$(DESTDIR)$(pkglibdir)/$$p"; \
467 rm -f "$(DESTDIR)$(bindir)/$$p"; \
471 .PHONY: gdb gdb-test valgrind valgrindshell