[openrtm-commit:00634] r2285 - in branches/test/OpenRTM-aist: src/lib/coil/ace/coil src/lib/coil/win32/coil win32/OpenRTM-aist/rtm win32/OpenRTM-aist/rtm/idl
openrtm @ openrtm.org
openrtm @ openrtm.org
2012年 2月 2日 (木) 16:12:58 JST
Author: kurihara
Date: 2012-02-02 16:12:58 +0900 (Thu, 02 Feb 2012)
New Revision: 2285
Modified:
branches/test/OpenRTM-aist/src/lib/coil/ace/coil/Makefile.am
branches/test/OpenRTM-aist/src/lib/coil/win32/coil/Makefile.am
branches/test/OpenRTM-aist/win32/OpenRTM-aist/rtm/Makefile.am
branches/test/OpenRTM-aist/win32/OpenRTM-aist/rtm/idl/Makefile.am
Log:
for jenkins.
Modified: branches/test/OpenRTM-aist/src/lib/coil/ace/coil/Makefile.am
===================================================================
--- branches/test/OpenRTM-aist/src/lib/coil/ace/coil/Makefile.am 2012-02-02 06:06:35 UTC (rev 2284)
+++ branches/test/OpenRTM-aist/src/lib/coil/ace/coil/Makefile.am 2012-02-02 07:12:58 UTC (rev 2285)
@@ -62,11 +62,25 @@
$(COIL_COMMON_SRC):
cp -p $(top_srcdir)/common/*.cpp .
cp -p $(top_srcdir)/common/*.h .
- qkc -ms *.cpp *.h
+ for x in *.cpp; do \
+ qkc -ms $${x} > $${x}_sjis; \
+ mv $${x}_sjis $${x}; \
+ done
+ for x in *.h; do \
+ qkc -ms $${x} > $${x}_sjis; \
+ mv $${x}_sjis $${x}; \
+ done
$(COIL_COMMON_H):
cp -p $(top_srcdir)/common/*.h .
- qkc -ms *.cpp *.h
+ for x in *.cpp; do \
+ qkc -ms $${x} > $${x}_sjis; \
+ mv $${x}_sjis $${x}; \
+ done
+ for x in *.h; do \
+ qkc -ms $${x} > $${x}_sjis; \
+ mv $${x}_sjis $${x}; \
+ done
coilheaderdir = $(prefix)/include/coil
Modified: branches/test/OpenRTM-aist/src/lib/coil/win32/coil/Makefile.am
===================================================================
--- branches/test/OpenRTM-aist/src/lib/coil/win32/coil/Makefile.am 2012-02-02 06:06:35 UTC (rev 2284)
+++ branches/test/OpenRTM-aist/src/lib/coil/win32/coil/Makefile.am 2012-02-02 07:12:58 UTC (rev 2285)
@@ -63,11 +63,17 @@
$(COIL_COMMON_SRC):
cp -p $(top_srcdir)/common/*.cpp .
- qkc -ms *.cpp
+ for x in *.cpp; do \
+ qkc -ms $${x} > $${x}_sjis; \
+ mv $${x}_sjis $${x}; \
+ done
$(COIL_COMMON_H):
cp -p $(top_srcdir)/common/*.h .
- qkc -ms *.h
+ for x in *.h; do \
+ qkc -ms $${x} > $${x}_sjis; \
+ mv $${x}_sjis $${x}; \
+ done
clean-local:
Modified: branches/test/OpenRTM-aist/win32/OpenRTM-aist/rtm/Makefile.am
===================================================================
--- branches/test/OpenRTM-aist/win32/OpenRTM-aist/rtm/Makefile.am 2012-02-02 06:06:35 UTC (rev 2284)
+++ branches/test/OpenRTM-aist/win32/OpenRTM-aist/rtm/Makefile.am 2012-02-02 07:12:58 UTC (rev 2285)
@@ -19,9 +19,15 @@
cp -p $(top_srcdir)/src/lib/rtm/*.h .
cp -p $(top_srcdir)/src/lib/rtm/version.txt .
cp -p config_rtc.h.in config_rtc.h
- qkc -ms *.cpp
- qkc -ms *.h
+ for x in *.cpp; do \
+ qkc -ms $${x} > $${x}_sjis; \
+ mv $${x}_sjis $${x}; \
+ done
+ for x in *.h; do \
+ qkc -ms $${x} > $${x}_sjis; \
+ mv $${x}_sjis $${x}; \
+ done
dist-hook: src
-EXTRA_DIST = config_rtc.h.in
\ No newline at end of file
+EXTRA_DIST = config_rtc.h.in
Modified: branches/test/OpenRTM-aist/win32/OpenRTM-aist/rtm/idl/Makefile.am
===================================================================
--- branches/test/OpenRTM-aist/win32/OpenRTM-aist/rtm/idl/Makefile.am 2012-02-02 06:06:35 UTC (rev 2284)
+++ branches/test/OpenRTM-aist/win32/OpenRTM-aist/rtm/idl/Makefile.am 2012-02-02 07:12:58 UTC (rev 2285)
@@ -11,7 +11,10 @@
src:
cp -p $(top_srcdir)/src/lib/rtm/idl/*.idl .
- qkc -ms *.idl
+ for x in *.idl; do \
+ qkc -ms $${x} > $${x}_sjis; \
+ mv $${x}_sjis $${x}; \
+ done
dist-hook: src
openrtm-commit メーリングリストの案内