Files
mruby-mruby/doc/mrbgems/c_and_ruby_extension_example/Makefile
T
2012-11-21 15:54:54 +08:00

13 lines
287 B
Makefile

include ../../Makefile4gem
GEM := c_and_ruby_extension_example
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