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