masakih

BSLinkConductor(プロジェクト終了)

  • R/O
  • HTTP
  • SSH
  • HTTPS

コミット

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

BathyScapheのリンクをクリックした時に開くアプリケーションを設定するためのツール


コミットメタ情報

リビジョンfb419e3e12bd8d22611c7e86ddfbcd06c154f312 (tree)
日時2011-02-19 23:57:34
作者Hori, Masaki <masakih@user...>
コミッターHori, Masaki

ログメッセージ

[New] .gitignoreを追加
[Mod] Makefileをgit用に変更

変更サマリ

差分

--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,17 @@
1+
2+.DS_Store
3+
4+build/
5+
6+*.mode1
7+*.mode1v3
8+*.mode2v3
9+*.perspective
10+*.perspectivev3
11+*.pbxuser
12+
13+*.~nib
14+*.swp
15+*~
16+*.[oa]
17+
--- a/Makefile
+++ b/Makefile
@@ -8,10 +8,6 @@ APP=$(BUILD_PATH)/$(DEPLOYMENT)/$(APP_BUNDLE)
88 APP_NAME=$(BUILD_PATH)/$(DEPLOYMENT)/$(PRODUCT_NAME)
99 INFO_PLIST=Info.plist
1010
11-URL_BSLinkConductor = svn+ssh://macmini/usr/local/svnrepos/BSLinkConductor
12-HEAD = $(URL_BSLinkConductor)/BSLinkConductor
13-TAGS_DIR = $(URL_BSLinkConductor)/tags
14-
1511 VER_CMD=grep -A1 'CFBundleShortVersionString' $(INFO_PLIST) | tail -1 | tr -d "'\t</string>"
1612 VERSION=$(shell $(VER_CMD))
1713
@@ -19,11 +15,10 @@ all:
1915 @echo do nothig.
2016 @echo use target tagging
2117
22-tagging: update_svn
18+tagging:
2319 @echo "Tagging the $(VERSION) (x) release of BSLinkConductor project."
2420 @echo ""
25- @REV=`LC_ALL=C svn info | awk '/Last Changed Rev/ {print $$4}'` ; \
26- echo svn copy $(HEAD) $(TAGS_DIR)/release-$(VERSION).$${REV}
21+ echo svn copy $(HEAD) $(TAGS_DIR)/release-$(VERSION)
2722
2823 Localizable:
2924 genstrings -o English.lproj $^
@@ -40,18 +35,16 @@ release: updateRevision
4035 $(MAKE) restorInfoPlist
4136
4237 package: release
43- REV=`LC_ALL=C svn info | awk '/Last Changed Rev/ {print $$4}'`; \
38+ REV=`git show | head -1 | awk '{printf("%.7s\n", $$2)}'`; \
4439 ditto -ck -rsrc --keepParent $(APP) $(APP_NAME)-$(VERSION)-$${REV}.zip
4540
46-updateRevision: update_svn
41+updateRevision:
4742 if [ ! -f $(INFO_PLIST).bak ] ; then cp $(INFO_PLIST) $(INFO_PLIST).bak ; fi ; \
48- REV=`LC_ALL=C svn info | awk '/Last Changed Rev/ {print $$4}'` ; \
43+ REV=`git show | head -1 | awk '{printf("%.7s\n", $$2)}'` ; \
4944 sed -e "s/%%%%REVISION%%%%/$${REV}/" $(INFO_PLIST) > $(INFO_PLIST).r ; \
5045 mv -f $(INFO_PLIST).r $(INFO_PLIST) ; \
5146
5247 restorInfoPlist:
5348 if [ -f $(INFO_PLIST).bak ] ; then mv -f $(INFO_PLIST).bak $(INFO_PLIST) ; fi
5449
55-update_svn:
56- svn up
5750