Check-in [6bf2170186]
Overview
Comment:Added distclean target to server Updated top-level Makefile to call clean/distclean in server
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 6bf2170186909ed8e0f6d7ade6641ae39fd26589
User & Date: rkeene on 2010-02-05 05:43:08
Other Links: manifest | tags
Context
2010-02-05
06:03
Updated to download Tcl if suitable headers cannot be found check-in: 806f56eb1d user: rkeene tags: trunk
05:43
Added distclean target to server Updated top-level Makefile to call clean/distclean in server check-in: 6bf2170186 user: rkeene tags: trunk
05:39
Teaparty 0.9.4 check-in: 646eeec6a7 user: rkeene tags: trunk
Changes

Modified Makefile from [fb77af787e] to [57d96a613f].

13
14
15
16
17
18
19

20
21
22

23
24
	$(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







>



>


13
14
15
16
17
18
19
20
21
22
23
24
25
26
	$(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
	$(MAKE) -C server/buildpkgs clean

distclean:
	$(MAKE) -C client distclean
	$(MAKE) -C server/buildpkgs distclean

.PHONY: all install clean distclean

Modified server/buildpkgs/Makefile from [f2ece7f06f] to [5257d3e48f].

15
16
17
18
19
20
21



22
	done

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




.PHONY: all clean







>
>
>
|
15
16
17
18
19
20
21
22
23
24
25
	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