summaryrefslogtreecommitdiffhomepage
path: root/doc/mrbgems/c_and_ruby_extension_example/Makefile
blob: 0f562584ecbeca3ac1afd7b24bcda7192ebd1208 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
GEM := c_and_ruby_extension_example

include ../../Makefile4gem

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