Check-in [c578308a85]
Overview
Comment:Updated to include patches in src tree
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: c578308a85b9893344b4d71eb2e27eef16cdbf4c
User & Date: rkeene on 2011-07-06 11:21:37
Other Links: manifest | tags
Context
2011-07-06
11:25
Updated tclreadline to work on systems without Tcl check-in: 7abac368ad user: rkeene tags: trunk
11:21
Updated to include patches in src tree check-in: c578308a85 user: rkeene tags: trunk
10:32
Consolidated patch application process Added patches for tclreadline check-in: 9c59c70725 user: rkeene tags: trunk
Changes

Modified server/buildpkgs/Makefile from [32c6d50e86] to [045bbcee1a].

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
all: tclpkgs-src-current.tar.gz

tclpkgs-src-current.tar.gz: tclpkgs-src-current
	tar -zcf tclpkgs-src-current.tar.gz tclpkgs-src-current
	rm -rf tclpkgs-src-current

tclpkgs-src-current: platform build_all.sh create_teapot common.sh */build.sh
	rm -rf tclpkgs-src-current
	mkdir tclpkgs-src-current
	cp -rp platform build_all.sh create_teapot common.sh tclpkgs-src-current/
	for dir in */; do \
		if test ! -f "$$dir/build.sh"; then continue; fi; \
		mkdir "tclpkgs-src-current/$$dir"; \
		cp "$$dir/build.sh" "tclpkgs-src-current/$$dir"; \

	done


clean:
	rm -f tclpkgs-*.tar.*
	rm -rf tclpkgs-src-current
	./build_all.sh clean

distclean: clean
	./build_all.sh 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
25
26
27
all: tclpkgs-src-current.tar.gz

tclpkgs-src-current.tar.gz: tclpkgs-src-current
	tar -zcf tclpkgs-src-current.tar.gz tclpkgs-src-current
	rm -rf tclpkgs-src-current

tclpkgs-src-current: platform build_all.sh create_teapot common.sh */build.sh */patches
	rm -rf tclpkgs-src-current
	mkdir tclpkgs-src-current
	cp -rp platform build_all.sh create_teapot common.sh tclpkgs-src-current/
	for dir in */; do \
		if test ! -f "$$dir/build.sh"; then continue; fi; \
		mkdir "tclpkgs-src-current/$$dir"; \
		cp "$$dir/build.sh" "tclpkgs-src-current/$$dir"; \
		if test -d "$$dir/patches"; then cp -rp "$$dir/patches" "tclpkgs-src-current/$$dir"; fi; \
	done
	find tclpkgs-src-current -name '.svn' | xargs rm -rf

clean:
	rm -f tclpkgs-*.tar.*
	rm -rf tclpkgs-src-current
	./build_all.sh clean

distclean: clean
	./build_all.sh distclean

.PHONY: all clean distclean