summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/g/c_extension_example/Makefile
blob: b245e96961982009de2bf773285e980ecd55b819 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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)
	$(AR) rs $(LIBR) $<

gem-clean :
	-$(RM) $(GEM_OBJECTS)