• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

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

Commit MetaInfo

Revisionac9c7d326a2f7fdc5bb5d901a2379f2c158ef8af (tree)
Time2015-03-06 05:30:19
AuthorTakuo Yasunaga <yasunaga@bio....>
CommiterTakuo Yasunaga

Log Message

modified: Makefile
add comment and echo

Change Summary

Incremental Difference

--- a/Makefile
+++ b/Makefile
@@ -18,8 +18,7 @@ help::
1818 @echo "---- To register new/Modified source codes. ----"
1919 @echo " $$ make git-add or git-add[-all|-data|-tutorial|-optional|-others|-others2]"
2020 @echo " $$ make git-commit or git-commit[-all|-data|-tutorial|-optional|-others|-others2]"
21- @echo " $$ git tag "
22- @echo " $$ git tag newtag "
21+ @echo " $$ make git-tag or git-tag[-all|-data|-tutorial|-optional|-others|-others2]"
2322 @echo " $$ make git-push or git-push[-all|-data|-tutorial|-optional|-others]"
2423 @echo ""
2524 @echo "---- To fetch and merge new/modified source codes. ----"
@@ -98,6 +97,10 @@ relink:
9897 ln -sf optional/objects .
9998 ln -sf data/example .
10099
100+#
101+# Add
102+#
103+
101104 git-add-all:: git-add git-add-data git-add-optional git-add-tutorial git-add-others
102105
103106 git-add:: git-add-hostdepend
@@ -124,13 +127,17 @@ git-add-others::
124127 git-add-others2::
125128 cd others2; git add --all .
126129
130+#
131+# Commit
132+#
133+
127134 git-commit-all:: git-commit git-commit-data git-commit-optional git-commit-tutorial git-commit-others
128135
129136 git-commit:: git-commit-hostdepend
130- git commit || echo "Already commited"
137+ @git commit || echo "Already commited"
131138
132139 git-commit-hostdepend::
133- cd hostdepend/$${EOS_HOSTDIR}/ ; git commit || echo "Already commited"
140+ @cd hostdepend/$${EOS_HOSTDIR}/ ; git commit || echo "Already commited"
134141
135142 git-commit-optional::
136143 cd optional; git commit
@@ -150,6 +157,10 @@ git-commit-others2::
150157 git-backup::
151158 git push $(EOS_GIT_BACKUPSITE) master --tags
152159
160+#
161+# tag
162+#
163+
153164 git-tag::
154165 @export DIRECTORYNAME=./; \
155166 make git-tag-common;
@@ -184,17 +195,23 @@ git-tag-common::
184195 fi; \
185196 fi;
186197
198+#
199+# push
200+#
201+
187202 git-push-all:: git-push git-push-data git-push-optional git-push-tutorial git-push-others
188203
189204 git-push::git-push-hostdepend
190205 # git push origin master --tags
206+ @echo "base"
191207 @export DIRECTORYNAME=./; \
192208 export ORIGINNAME=origin; \
193209 make git-push-with-check;
194210
195211 git-push-hostdepend::
196212 #git subtree push --prefix=hostdepend/$${EOS_HOSTDIR}/ --squash hostdepend$${EOS_HOSTDIR} master
197- cd hostdepend/$${EOS_HOSTDIR}/; git push hostdepend$${EOS_HOSTDIR} master
213+ @echo "hostdepend"
214+ @cd hostdepend/$${EOS_HOSTDIR}/; git push hostdepend$${EOS_HOSTDIR} master
198215
199216 git-push-optional::
200217 # cd optional; git push optional master --tags