|
From: <c99...@us...> - 2007-08-12 21:52:22
|
Revision: 446
http://cadcdev.svn.sourceforge.net/cadcdev/?rev=446&view=rev
Author: c99koder
Date: 2007-08-12 14:52:20 -0700 (Sun, 12 Aug 2007)
Log Message:
-----------
Tiki: Makefile wrapper
Added Paths:
-----------
tiki/osx/Makefile
Added: tiki/osx/Makefile
===================================================================
--- tiki/osx/Makefile (rev 0)
+++ tiki/osx/Makefile 2007-08-12 21:52:20 UTC (rev 446)
@@ -0,0 +1,16 @@
+all:
+ xcodebuild -target Tiki -configuration Development
+ xcodebuild -target Tiki -configuration Deployment
+ xcodebuild -project ../examples/TikiTest/TikiTest.xcodeproj -configuration Development
+ xcodebuild -project ../examples/TikiTest/TikiTest.xcodeproj -configuration Deployment
+ xcodebuild -project ../examples/console/TikiSnake/TikiSnake.xcodeproj -configuration Development
+ xcodebuild -project ../examples/console/TikiSnake/TikiSnake.xcodeproj -configuration Deployment
+
+clean:
+ xcodebuild -target Tiki -configuration Development clean
+ xcodebuild -target Tiki -configuration Deployment clean
+ xcodebuild -project ../examples/TikiTest/TikiTest.xcodeproj -configuration Development clean
+ xcodebuild -project ../examples/TikiTest/TikiTest.xcodeproj -configuration Deployment clean
+ xcodebuild -project ../examples/console/TikiSnake/TikiSnake.xcodeproj -configuration Development clean
+ xcodebuild -project ../examples/console/TikiSnake/TikiSnake.xcodeproj -configuration Deployment clean
+
Property changes on: tiki/osx/Makefile
___________________________________________________________________
Name: svn:eol-style
+ native
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <at...@us...> - 2007-08-14 22:50:21
|
Revision: 466
http://cadcdev.svn.sourceforge.net/cadcdev/?rev=466&view=rev
Author: atani
Date: 2007-08-14 15:50:19 -0700 (Tue, 14 Aug 2007)
Log Message:
-----------
internet-enable dmg files to allow auto-mount
Modified Paths:
--------------
tiki/osx/Makefile
Modified: tiki/osx/Makefile
===================================================================
--- tiki/osx/Makefile 2007-08-14 22:44:13 UTC (rev 465)
+++ tiki/osx/Makefile 2007-08-14 22:50:19 UTC (rev 466)
@@ -29,6 +29,8 @@
-volname "Tiki r$(SVN_VERSION) Debug" \
"../dist/$(SVN_VERSION)/Tiki-$(SVN_VERSION)-Debug.dmg"
rm -rf ../dist/$(SVN_VERSION)/tmp-debug
+ hdiutil internet-enable -yes \
+ "../dist/$(SVN_VERSION)/Tiki-$(SVN_VERSION)-Debug.dmg"
gzip ../dist/$(SVN_VERSION)/Tiki-$(SVN_VERSION)-Debug.dmg
mkdir ../dist/$(SVN_VERSION)/tmp-release
ditto -v build/Deployment/Tiki.framework \
@@ -41,5 +43,7 @@
-srcfolder "../dist/$(SVN_VERSION)/tmp-release" \
-volname "Tiki r$(SVN_VERSION) Release" \
"../dist/$(SVN_VERSION)/Tiki-$(SVN_VERSION)-Release.dmg"
+ hdiutil internet-enable -yes \
+ "../dist/$(SVN_VERSION)/Tiki-$(SVN_VERSION)-Release.dmg"
gzip ../dist/$(SVN_VERSION)/Tiki-$(SVN_VERSION)-Release.dmg
rm -rf ../dist/$(SVN_VERSION)/tmp-release
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <at...@us...> - 2007-08-15 23:27:53
|
Revision: 469
http://cadcdev.svn.sourceforge.net/cadcdev/?rev=469&view=rev
Author: atani
Date: 2007-08-15 16:27:51 -0700 (Wed, 15 Aug 2007)
Log Message:
-----------
use - instead of ' ', tiki vs Tiki
Modified Paths:
--------------
tiki/osx/Makefile
Modified: tiki/osx/Makefile
===================================================================
--- tiki/osx/Makefile 2007-08-15 16:24:53 UTC (rev 468)
+++ tiki/osx/Makefile 2007-08-15 23:27:51 UTC (rev 469)
@@ -26,12 +26,12 @@
../dist/$(SVN_VERSION)/tmp-debug/TikiSnake.app
hdiutil create -fs HFS+ \
-srcfolder "../dist/$(SVN_VERSION)/tmp-debug" \
- -volname "Tiki r$(SVN_VERSION) Debug" \
- "../dist/$(SVN_VERSION)/Tiki-$(SVN_VERSION)-Debug.dmg"
+ -volname "Tiki-r$(SVN_VERSION)-Debug" \
+ "../dist/$(SVN_VERSION)/tiki-$(SVN_VERSION)-Debug.dmg"
rm -rf ../dist/$(SVN_VERSION)/tmp-debug
hdiutil internet-enable -yes \
- "../dist/$(SVN_VERSION)/Tiki-$(SVN_VERSION)-Debug.dmg"
- gzip ../dist/$(SVN_VERSION)/Tiki-$(SVN_VERSION)-Debug.dmg
+ "../dist/$(SVN_VERSION)/tiki-$(SVN_VERSION)-Debug.dmg"
+ gzip ../dist/$(SVN_VERSION)/tiki-$(SVN_VERSION)-Debug.dmg
mkdir ../dist/$(SVN_VERSION)/tmp-release
ditto -v build/Deployment/Tiki.framework \
../dist/$(SVN_VERSION)/tmp-release/Tiki.framework
@@ -41,9 +41,9 @@
../dist/$(SVN_VERSION)/tmp-release/TikiSnake.app
hdiutil create -fs HFS+ \
-srcfolder "../dist/$(SVN_VERSION)/tmp-release" \
- -volname "Tiki r$(SVN_VERSION) Release" \
- "../dist/$(SVN_VERSION)/Tiki-$(SVN_VERSION)-Release.dmg"
+ -volname "Tiki-r$(SVN_VERSION)-Release" \
+ "../dist/$(SVN_VERSION)/tiki-$(SVN_VERSION)-Release.dmg"
hdiutil internet-enable -yes \
- "../dist/$(SVN_VERSION)/Tiki-$(SVN_VERSION)-Release.dmg"
- gzip ../dist/$(SVN_VERSION)/Tiki-$(SVN_VERSION)-Release.dmg
+ "../dist/$(SVN_VERSION)/tiki-$(SVN_VERSION)-Release.dmg"
+ gzip ../dist/$(SVN_VERSION)/tiki-$(SVN_VERSION)-Release.dmg
rm -rf ../dist/$(SVN_VERSION)/tmp-release
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <at...@us...> - 2007-11-06 02:14:18
|
Revision: 531
http://cadcdev.svn.sourceforge.net/cadcdev/?rev=531&view=rev
Author: atani
Date: 2007-11-05 18:14:10 -0800 (Mon, 05 Nov 2007)
Log Message:
-----------
fix examples copy
Modified Paths:
--------------
tiki/osx/Makefile
Modified: tiki/osx/Makefile
===================================================================
--- tiki/osx/Makefile 2007-11-06 01:01:45 UTC (rev 530)
+++ tiki/osx/Makefile 2007-11-06 02:14:10 UTC (rev 531)
@@ -34,13 +34,13 @@
ditto -v build/Development/Tiki.framework \
../dist/$(SVN_VERSION)/tmp/Development/Tiki.framework
ditto -v ../examples/console/TikiSnake/build/Deployment/TikiSnake.app \
- ../dist/$(SVN_VERSION)/tmp/Samples
+ ../dist/$(SVN_VERSION)/tmp/Samples/TikiSnake.app
ditto -v ../examples/events/build/Deployment/TikiEvents.app \
- ../dist/$(SVN_VERSION)/tmp/Samples
+ ../dist/$(SVN_VERSION)/tmp/Samples/TikiEvents.app
ditto -v ../examples/menu/basic/build/Deployment/TikiBasicMenu.app \
- ../dist/$(SVN_VERSION)/tmp/Samples
+ ../dist/$(SVN_VERSION)/tmp/Samples/TikiBasicMenu.app
ditto -v ../examples/menu/popup/build/Deployment/TikiPopupMenu.app \
- ../dist/$(SVN_VERSION)/tmp/Samples
+ ../dist/$(SVN_VERSION)/tmp/Samples/TikiPopupMenu.app
hdiutil create -fs HFS+ \
-srcfolder "../dist/$(SVN_VERSION)/tmp" \
-volname "Tiki-r$(SVN_VERSION)" \
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|