diff options
Diffstat (limited to 'mrbgems')
| -rw-r--r-- | mrbgems/Makefile | 4 | ||||
| -rw-r--r-- | mrbgems/init_gems.c | 2 | ||||
| -rw-r--r-- | mrbgems/md5/README.md | 4 |
3 files changed, 9 insertions, 1 deletions
diff --git a/mrbgems/Makefile b/mrbgems/Makefile index 7f2157032..368488926 100644 --- a/mrbgems/Makefile +++ b/mrbgems/Makefile @@ -12,10 +12,14 @@ CC_FLAGS := -Wall -Werror-implicit-function-declaration -g -O3 -MMD -I. -I./../i .PHONY : all all : $(INIT).o +# @TODO: +# all available GEMS have to be built $(INIT).o : $(INIT).c gcc $(CC_FLAGS) -c $(INIT).c -o $(INIT).o @$(MAKE) -C md5 +# @TODO: +# all available GEMS have to be cleaned .PHONY : clean clean : $(RM_F) $(INIT).o $(INIT).d $(LIBRGEMS) diff --git a/mrbgems/init_gems.c b/mrbgems/init_gems.c index 302720da4..02024d5a2 100644 --- a/mrbgems/init_gems.c +++ b/mrbgems/init_gems.c @@ -3,6 +3,8 @@ * initializing methods necessary to * bootstrap every gem. * + * @TODO: + * this file has to be generated based on the active gems */ #include "mruby.h" diff --git a/mrbgems/md5/README.md b/mrbgems/md5/README.md index c96475aa1..d84bb9941 100644 --- a/mrbgems/md5/README.md +++ b/mrbgems/md5/README.md @@ -1,4 +1,6 @@ mruby-md5 ========= -MD5 digest function +MD5 digest function. + +This library comes original from mattn (http://github.com/mattn/mruby-md5) |
