summaryrefslogtreecommitdiffhomepage
path: root/doc/mrbgems/c_extension_example/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'doc/mrbgems/c_extension_example/Makefile')
-rw-r--r--doc/mrbgems/c_extension_example/Makefile16
1 files changed, 0 insertions, 16 deletions
diff --git a/doc/mrbgems/c_extension_example/Makefile b/doc/mrbgems/c_extension_example/Makefile
deleted file mode 100644
index b0afa420c..000000000
--- a/doc/mrbgems/c_extension_example/Makefile
+++ /dev/null
@@ -1,16 +0,0 @@
-GEM := c_extension_example
-
-include $(MAKEFILE_4_GEM)
-
-GEM_C_FILES := $(wildcard $(SRC_DIR)/*.c)
-GEM_OBJECTS := $(patsubst %.c, %.o, $(GEM_C_FILES))
-
-MRUBY_CFLAGS :=
-MRUBY_LDFLAGS :=
-MRUBY_LIBS :=
-
-gem-all : $(GEM_OBJECTS) gem-c-files
-
-gem-clean : gem-clean-c-files
-
-gem-test : gem-test-c-files