mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
13 lines
286 B
Makefile
13 lines
286 B
Makefile
GEM := c_and_ruby_extension_example
|
|
|
|
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
|