OSDN Git Service

add bchanf by submodule.
authorornse01 <ornse01@users.sourceforge.jp>
Fri, 27 Mar 2015 06:18:18 +0000 (15:18 +0900)
committerornse01 <ornse01@users.sourceforge.jp>
Fri, 27 Mar 2015 06:18:18 +0000 (15:18 +0900)
.gitmodules [new file with mode: 0644]
pcat/bchanf/Makefile.lib [changed from file to symlink]
src/bchanf [new submodule]

diff --git a/.gitmodules b/.gitmodules
new file mode 100644 (file)
index 0000000..e7e9118
--- /dev/null
@@ -0,0 +1,3 @@
+[submodule "src/bchanf"]
+       path = src/bchanf
+       url = git://git.sourceforge.jp/gitroot/bbk/bchanf.git
deleted file mode 100644 (file)
index c30621a4727318e3d90c45cb013fc70e7434329b..0000000000000000000000000000000000000000
+++ /dev/null
@@ -1,139 +0,0 @@
-#
-#      @(#)Makefile (library using bchanf)
-#              GNU make ÍÑ
-#
-#      make ¤ÎÊýË¡
-#      ¡¦make
-#              ¥ê¥ê¡¼¥¹ÍѤÎÀµ¼°ÈǤòºîÀ®
-#      ¡¦make mode=debug
-#              ¥Ç¥Ð¥Ã¥°ÍѤ˺îÀ®
-#      ¡¦make clean
-#              make ¤ÇºîÀ®¤·¤¿Á´¤Æ¤Î¥Õ¥¡¥¤¥ë¤òºï½ü
-#      ¡¦make install
-#              µ¬Äê¤Î¾ì½ê¤Ë¥¤¥ó¥¹¥È¡¼¥ë (¼Âµ¡ÍѤΤß)
-#
-
-# ¥Ð¡¼¥¸¥ç¥ó
-version = 0x0010
-
-# ¥ê¥ê¡¼¥¹ÍѤò¥Ç¥Õ¥©¥ë¥È¤Ë¤¹¤ë
-mode =
-
-# ¥½¡¼¥¹¤Î°Í¸´Ø·¸¥Õ¥¡¥¤¥ë (¼«Æ°À¸À®)
-DEPS = Dependencies
-DEPENDENCIES_OUTPUT := $(DEPS)
-
-# ¥¢¥×¥ê¥±¡¼¥·¥ç¥óɸ½à¥ë¡¼¥ë
-MACHINE = pcat
-include $(BD)/appl/etc/makerules
-
-#----------------------------------------------------------------------
-# ºîÀ®ÂоÝ
-TARGET = libbchanf
-
-# ¥½¡¼¥¹¥Õ¥¡¥¤¥ë¤Î¥µ¡¼¥Á¥Ñ¥¹
-TOPDIR = ../../src/bchanf
-S = $(TOPDIR)/src $(TOPDIR)/src/http $(TOPDIR)/src/parse $(TOPDIR)/src/coll $(TOPDIR)/src/coding $(TOPDIR)/src/tad $(TOPDIR)/src/hmi $(TOPDIR)/src/css
-VPATH = $(S)
-
-# ¥Ø¥Ã¥À¥Õ¥¡¥¤¥ë¤Î¥Ç¥£¥ì¥¯¥È¥êÄɲÃ
-HEADER := $(S) $(HEADER)
-
-# ¥½¡¼¥¹¥Õ¥¡¥¤¥ë
-
-SRC_HTTP =     http_connector.c \
-               http_transferdecoder.c \
-               http_contentdecoder.c \
-               http_headerlexer.c \
-               http_statuslineparser.c \
-               http_requestlinestream.c \
-               http_defaultheaderstream.c \
-               http_defaultheaderparser.c \
-               http_transport.c
-
-SRC_PARSE =    tokenchecker.c \
-               charreferparser.c 
-
-SRC_COLL =     idtocb.c \
-               arraybase.c \
-               treebase.c \
-               bytearray.c \
-               wordarray.c
-
-SRC_CODING =   base64encoder.c \
-               base64decoder.c
-
-SRC_TAD =      taditerator.c \
-               tadstack.c \
-               tadtsvparser.c \
-               tadlexer_le.c \
-               traydata_iterator.c \
-               tadfragment.c \
-               tadlangcode.c \
-               taddecoder.c \
-               tadsegment.c
-
-SRC_HMI =      hmi_windowscroll.c \
-               texteditor_textfragment.c \
-               texteditor_characterstate.c \
-               texteditor_insertfilter.c \
-               texteditor_stackfilter.c
-
-SRC_CSS =      cssrendering_box.c \
-               cssrendering_coordinate.c
-
-SRC =  $(SRC_HTTP) $(SRC_PARSE) $(SRC_COLL) $(SRC_CODING) $(SRC_TAD) $(SRC_HMI) $(SRC_CSS)
-
-# ¥Ç¡¼¥¿¥Ü¥Ã¥¯¥¹¥½¡¼¥¹¥Õ¥¡¥¤¥ë
-DBSRC =
-
-SRC += $(DBSRC)
-
-WC_SRC = $(filter %.C, $(SRC))
-
-# ¥ª¥Ö¥¸¥§¥¯¥È¥Õ¥¡¥¤¥ë
-OBJ = $(addsuffix .o, $(basename $(SRC)))
-
-# ¥³¥ó¥Ñ¥¤¥ë¥ª¥×¥·¥ç¥ó
-ifneq ($(mode), debug)
-  CFLAGS += -Wall
-endif
-
-CFLAGS += $(BUILDOPTIONS)
-
-LOADLIBES += -limg
-
-#----------------------------------------------------------------------
-.PHONY: all clean install
-
-INST = $(addprefix $(TARGET), .a)
-
-all: $(INST)
-
-$(TARGET).a: $(OBJ)
-       $(GNUi386)/bin/ar $(ARFLAGS) $@ $^
-       $(RANLIB) $@
-
-clean:
-       $(RM) $(OBJ)
-       $(RM) $(WC_SRC:%.C=%.c) $(DBSRC)
-       $(RM) $(INST) $(NOINST) *.lst $(DEPS)
-
-install: $(INST:%=$(EXE_INSTALLDIR)/%)
-
-$(EXE_INSTALLDIR)/$(TARGET).out: $(EXE_INSTALLDIR)/%: %
-       $(EXE_INSTALL_STRIP)
-
-# ¥½¡¼¥¹¤Î°Í¸´Ø·¸
-
-$(WC_SRC:%.C=%.c):
-
-$(DBSRC):
-
-ifdef DEPENDENCIES_OUTPUT
-$(DEPS):       ; touch $(DEPS)
-else
-$(DEPS): $(SRC)        ; $(MAKEDEPS) $@ $?
-endif
-
-include $(DEPS)
new file mode 120000 (symlink)
index 0000000000000000000000000000000000000000..205f2fb79e6bc465908a96e7709772e38ce41553
--- /dev/null
@@ -0,0 +1 @@
+../../src/bchanf/src/Makefile.lib
\ No newline at end of file
diff --git a/src/bchanf b/src/bchanf
new file mode 160000 (submodule)
index 0000000..9f68f9a
--- /dev/null
@@ -0,0 +1 @@
+Subproject commit 9f68f9a677e1611779805baeb26152fa5a8faf5a