should not ignore Makefile...

This commit is contained in:
Tomoyuki Sahara
2012-12-25 13:44:22 +09:00
parent f210dd553e
commit 92ad6dc8c3
2 changed files with 14 additions and 1 deletions
-1
View File
@@ -1,4 +1,3 @@
Makefile
gem_*
gem-*
mrb-*.a
+14
View File
@@ -0,0 +1,14 @@
GEM := mruby-dir
include $(MAKEFILE_4_GEM)
GEM_C_FILES := $(wildcard $(SRC_DIR)/*.c)
GEM_OBJECTS := $(patsubst %.c, %.o, $(GEM_C_FILES))
GEM_RB_FILES := $(wildcard $(MRB_DIR)/*.rb)
gem-all : $(GEM_OBJECTS) gem-c-and-rb-files
gem-clean : gem-clean-c-and-rb-files
gem-test : gem-test-c-and-rb-files