summaryrefslogtreecommitdiffhomepage
path: root/doc/mrbgems/c_extension_example/Makefile
blob: 615557acac0a3b7369d0193255188f8c598fb0b7 (plain)
1
2
3
4
5
6
7
8
9
10
include ../../Makefile4gem

GEM := c_extension_example

GEM_C_FILES := $(wildcard $(SRC_DIR)/*.c)
GEM_OBJECTS := $(patsubst %.c, %.o, $(GEM_C_FILES))

gem-all : $(GEM_OBJECTS) gem-c-files

gem-clean : gem-clean-c-files