From: <at...@us...> - 2007-08-12 21:13:14
|
Revision: 443 http://cadcdev.svn.sourceforge.net/cadcdev/?rev=443&view=rev Author: atani Date: 2007-08-12 14:13:10 -0700 (Sun, 12 Aug 2007) Log Message: ----------- clean all instead of all Modified Paths: -------------- tiki/Makefile Modified: tiki/Makefile =================================================================== --- tiki/Makefile 2007-08-12 20:59:19 UTC (rev 442) +++ tiki/Makefile 2007-08-12 21:13:10 UTC (rev 443) @@ -1,5 +1,5 @@ win32 dc gp2x osx sdl: - $(MAKE) -C $@ all + $(MAKE) -C $@ clean all .PHONY: win32 dc gp2x osx sdl This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <at...@us...> - 2007-08-12 21:15:15
|
Revision: 444 http://cadcdev.svn.sourceforge.net/cadcdev/?rev=444&view=rev Author: atani Date: 2007-08-12 14:15:14 -0700 (Sun, 12 Aug 2007) Log Message: ----------- add nds to .PHONY Modified Paths: -------------- tiki/Makefile Modified: tiki/Makefile =================================================================== --- tiki/Makefile 2007-08-12 21:13:10 UTC (rev 443) +++ tiki/Makefile 2007-08-12 21:15:14 UTC (rev 444) @@ -2,4 +2,4 @@ win32 dc gp2x osx sdl: $(MAKE) -C $@ clean all -.PHONY: win32 dc gp2x osx sdl +.PHONY: win32 dc gp2x osx sdl nds This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <at...@us...> - 2007-08-12 22:06:26
|
Revision: 447 http://cadcdev.svn.sourceforge.net/cadcdev/?rev=447&view=rev Author: atani Date: 2007-08-12 15:06:23 -0700 (Sun, 12 Aug 2007) Log Message: ----------- add nds target Modified Paths: -------------- tiki/Makefile Modified: tiki/Makefile =================================================================== --- tiki/Makefile 2007-08-12 21:52:20 UTC (rev 446) +++ tiki/Makefile 2007-08-12 22:06:23 UTC (rev 447) @@ -1,5 +1,8 @@ -win32 dc gp2x osx sdl: +win32 dc gp2x osx sdl nds: $(MAKE) -C $@ clean all +win32_examples dc_examples gp2x_examples osx_examples sdl_examples nds_examples: + $(MAKE) -C $(@:_examples=) examples + .PHONY: win32 dc gp2x osx sdl nds This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <at...@us...> - 2007-08-14 05:07:09
|
Revision: 462 http://cadcdev.svn.sourceforge.net/cadcdev/?rev=462&view=rev Author: atani Date: 2007-08-13 22:07:06 -0700 (Mon, 13 Aug 2007) Log Message: ----------- move snapshots to tiki dir Modified Paths: -------------- tiki/Makefile Modified: tiki/Makefile =================================================================== --- tiki/Makefile 2007-08-14 00:29:26 UTC (rev 461) +++ tiki/Makefile 2007-08-14 05:07:06 UTC (rev 462) @@ -19,6 +19,6 @@ -mkdir dist -mkdir dist/$(SVN_VERSION) $(MAKE) -C $(@:_package=) package SVN_VERSION=$(SVN_VERSION) - scp -rq dist/$(SVN_VERSION) tr...@at...:public_html/snapshots + scp -rq dist/$(SVN_VERSION) tr...@at...:public_html/snapshots/tiki .PHONY: win32 dc gp2x osx sdl nds This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <at...@us...> - 2007-08-22 20:47:45
|
Revision: 486 http://cadcdev.svn.sourceforge.net/cadcdev/?rev=486&view=rev Author: atani Date: 2007-08-22 13:47:44 -0700 (Wed, 22 Aug 2007) Log Message: ----------- fixing svnversion usage Modified Paths: -------------- tiki/Makefile Modified: tiki/Makefile =================================================================== --- tiki/Makefile 2007-08-22 18:08:17 UTC (rev 485) +++ tiki/Makefile 2007-08-22 20:47:44 UTC (rev 486) @@ -1,5 +1,5 @@ -SVN_VERSION_TMP=$(shell svnversion) +SVN_VERSION_TMP=$(shell svnversion .) SVN_VERSION=$(subst :,_,$(SVN_VERSION_TMP)) default: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |