Check-in [20955a4d7c]
Overview
Comment:Documentation update Updated Makefile to pass arguments to for .kit/install
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 20955a4d7c73458ca59f43ac2881cbe3a63e3b5a
User & Date: rkeene on 2009-04-19 20:08:06
Other Links: manifest | tags
Context
2009-04-20
09:22
Updated sanity check for build check-in: 7dc455e900 user: rkeene tags: trunk
2009-04-19
20:08
Documentation update Updated Makefile to pass arguments to for .kit/install check-in: 20955a4d7c user: rkeene tags: trunk
10:00
Teaparty 0.9.2.x check-in: 89e9cdb81b user: rkeene tags: trunk
Changes

Modified Makefile from [86357e8d20] to [a02a1535c2].








1


2
3
4



5
6
7
8
9
10
11
12







all: client/teapot-client.kit



client/teapot-client.kit:
	make -C client teapot-client.kit




clean:
	make -C client clean

distclean:
	make -C client distclean

.PHONY: all clean distclean
>
>
>
>
>
>
>
|
>
>


|
>
>
>







|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
include Makefile.defs
TCLKIT = tclkit
TCLCONFIGPATH = $(DESTDIR)/$(prefix)/lib $(DESTDIR)/$(prefix)/lib64 $(DESTDIR)/usr/lib $(DESTDIR)/usr/lib64 $(DESTDIR)/usr/local/lib $(DESTDIR)/usr/local/lib64
TEAPOTCLIENTVERS = 0.1
TCLDIR = 
PREFIX = /usr/local
prefix = $(PREFIX)

all:
	make -C client all

client/teapot-client.kit:
	make -C client teapot-client.kit TCLKIT="$(TCLKIT)" TCLCONFIGPATH="$(TCLCONFIGPATH)" TEAPOTCLIENTVERS="$(TEAPOTCLIENTVERS)" TCLDIR="$(TCLDIR)" PREFIX="$(PREFIX)" prefix="$(prefix)"

install:
	make -C client install TCLKIT="$(TCLKIT)" TCLCONFIGPATH="$(TCLCONFIGPATH)" TEAPOTCLIENTVERS="$(TEAPOTCLIENTVERS)" TCLDIR="$(TCLDIR)" PREFIX="$(PREFIX)" prefix="$(prefix)"

clean:
	make -C client clean

distclean:
	make -C client distclean

.PHONY: all install clean distclean

Added Makefile.defs version [4478d49a92].













>
>
>
>
>
>
1
2
3
4
5
6
TCLKIT = tclkit
TCLCONFIGPATH = $(DESTDIR)/$(prefix)/lib $(DESTDIR)/$(prefix)/lib64 $(DESTDIR)/usr/lib $(DESTDIR)/usr/lib64 $(DESTDIR)/usr/local/lib $(DESTDIR)/usr/local/lib64
TEAPOTCLIENTVERS = 0.1
TCLDIR = 
PREFIX = /usr/local
prefix = $(PREFIX)

Modified README.txt from [39ba51f6e4] to [f1002c2aaf].

17
18
19
20
21
22
23






24
25
26
27
28
29
30
		# make install TCLDIR=your_particular_directory
	   (note that it will create a "teapotclient0.1" directory and
	    but no "lib" or similar directory)
	c. If you wish to install into an alternate root directory (i.e., for
	   packaging), execute:
		# make install DESTDIR=your_new_rootdir
	   This will search for a "tclConfig.sh" in the destination directory.







Note that the install directory is not encoded in the script in any way so it
can be safely moved after installation.

2. Using
--------








>
>
>
>
>
>







17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
		# make install TCLDIR=your_particular_directory
	   (note that it will create a "teapotclient0.1" directory and
	    but no "lib" or similar directory)
	c. If you wish to install into an alternate root directory (i.e., for
	   packaging), execute:
		# make install DESTDIR=your_new_rootdir
	   This will search for a "tclConfig.sh" in the destination directory.
	d. If you wish to install into an alternate prefix (default is
	   "/usr/local"), execute:
		# make install PREFIX=your_new_prefix
	   (note that this only affects the search path and where the
	   "teapot-client" script is installed, not where the package goes
	   directly)

Note that the install directory is not encoded in the script in any way so it
can be safely moved after installation.

2. Using
--------

Modified client/Makefile from [688e4e23af] to [66938c5bee].

1
2
3
4
5
6
7
8
9
10
11
12
13
TCLKIT = tclkit
TCLCONFIGPATH = $(DESTDIR)/$(prefix)/lib $(DESTDIR)/$(prefix)/lib64 $(DESTDIR)/usr/lib $(DESTDIR)/usr/lib64 $(DESTDIR)/usr/local/lib $(DESTDIR)/usr/local/lib64
TEAPOTCLIENTVERS = 0.1
TCLDIR = 
PREFIX = /usr/local
prefix = $(PREFIX)

all:
	@echo 'Nothing to do.'

install:
	@echo TCLDIR="$(TCLDIR)"; \
	TCLDIR="$(TCLDIR)"; \
<
<
<
<
<
|












1
2
3
4
5
6
7
8





include ../Makefile.defs

all:
	@echo 'Nothing to do.'

install:
	@echo TCLDIR="$(TCLDIR)"; \
	TCLDIR="$(TCLDIR)"; \