/usr/share/tcltk/critcl-app3.1.8/tea/Makefile.in is in critcl 3.1.9-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 | # Makefile.in --
#
# This file is a Makefile for "@@PNAME@@ @@PMAJORV@@.@@PMINORV@@". If this
# is "Makefile.in" then it is a template for a Makefile; to generate
# the actual Makefile, run "./configure", which is a configuration script
# generated by the "autoconf" program (constructs like "@foo@" will get
# replaced in the actual Makefile.
#
# Copyright (c) @@YEAR@@ @@PORG@@
#
# Generated by @@CRITCL@@
# At @@NOW@@
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# RCS: @(#) $Id: Makefile.in,v 1.101 2007/08/21 22:04:14 andreas_kupries Exp $
#========================================================================
# Nothing of the variables below this line need to be changed. Please
# check the TARGETS section below to make sure the make targets are
# correct.
#========================================================================
SHELL = @SHELL@
srcdir = @srcdir@
top_srcdir = @top_srcdir@
prefix = @prefix@
exec_prefix = @exec_prefix@
libdir = @libdir@
mandir = @mandir@
bindir = @bindir@
sbindir = @sbindir@
libexecdir = @libexecdir@
datarootdir = @datarootdir@
datadir = @datadir@
sysconfdir = @sysconfdir@
sharedir = @sharedstatedir@
statedir = @localstatedir@
includedir = @includedir@
oldincludedir = @oldincludedir@
DESTDIR =
pkglibdir = $(libdir)/@PACKAGE_NAME@@PACKAGE_VERSION@
top_builddir = .
PACKAGE = @PACKAGE_NAME@
VERSION = @PACKAGE_VERSION@
CYGPATH = @CYGPATH@
TCLSH_PROG = @TCLSH_PROG@
CRITCL = `$(CYGPATH) $(srcdir)/critcl/main.tcl`
CONFIG_CLEAN_FILES =
@@API@@
@@UCONFIG@@
#========================================================================
# PKG_TCL_SOURCES identifies Tcl runtime files that are associated with
# this package that need to be installed, if any.
#========================================================================
PKG_TCL_SOURCES = @@PFILES@@
#========================================================================
# Start of user-definable TARGETS section
#========================================================================
all:
doc:
install: all
echo %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% ; \
cat $(top_builddir)/Config | grep -v '^#' ; \
echo %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% ; \
rm -rf $(top_builddir)/results-tea ; \
$(TCLSH_PROG) $(CRITCL) \
-I $(prefix)/include \
-I $(exec_prefix)/include \
-I $(includedir)@@APIUSE@@ \
@@UCONFIGUSE@@ \
-keep -cache $(top_builddir)/results-tea \
-target TEA -config $(top_builddir)/Config \
-libdir $(DESTDIR)$(libdir) \
-includedir $(DESTDIR)$(includedir) \
-pkg $(PACKAGE)$(VERSION) \
$(PKG_TCL_SOURCES) ; \
echo %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% ; \
cat $(top_builddir)/results-tea/*.log
echo %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% ; \
install-auto: all show-auto
rm -rf $(top_builddir)/results-auto ; \
$(TCLSH_PROG) $(CRITCL) \
-I $(prefix)/include \
-I $(exec_prefix)/include \
-I $(includedir)@@APIUSE@@ \
@@UCONFIGUSE@@ \
-keep -cache $(top_builddir)/results-auto \
-libdir $(DESTDIR)$(libdir) \
-includedir $(DESTDIR)$(includedir) \
-pkg $(PACKAGE)$(VERSION) \
$(PKG_TCL_SOURCES) ; \
echo %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% ; \
cat $(top_builddir)/results-auto/*.log
echo %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% ; \
install-doc:
show:
$(TCLSH_PROG) $(CRITCL) \
-keep -cache $(top_builddir)/results-tea \
-target TEA -config $(top_builddir)/Config \
-libdir $(DESTDIR)$(libdir) \
-pkg -show
show-auto:
$(TCLSH_PROG) $(CRITCL) \
-keep -cache $(top_builddir)/results-auto \
-libdir $(DESTDIR)$(libdir) \
-pkg -show
clean:
rm -rf doc *-doc
distclean: clean
-rm -f Makefile $(CONFIG_CLEAN_FILES)
-rm -f config.cache config.log stamp-h stamp-h[0-9]*
-rm -f config.status
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
cd $(top_builddir) \
&& CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
.PHONY: all binaries clean depend distclean doc install installdirs libraries test
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:
|