summaryrefslogtreecommitdiff
path: root/ext/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'ext/Makefile.in')
-rw-r--r--ext/Makefile.in40
1 files changed, 0 insertions, 40 deletions
diff --git a/ext/Makefile.in b/ext/Makefile.in
deleted file mode 100644
index 20d8c5c9c4..0000000000
--- a/ext/Makefile.in
+++ /dev/null
@@ -1,40 +0,0 @@
-2SHELL = /bin/sh
-
-#### Start of system configuration section. ####
-
-srcdir = @srcdir@
-VPATH = @srcdir@
-
-CC = @CC@
-
-CFLAGS = -I.. @CCDLFLAGS@ @CFLAGS@
-LIBS = @LIBS@
-EXT = @EXT@
-
-prefix = @prefix@
-binprefix =
-exec_prefix = @exec_prefix@
-bindir = $(exec_prefix)/bin
-
-#### End of system configuration section. ####
-
-.SUFFIXES: .so $(SUFFIXES)
-
-OBJS = dbm.$(EXT) \
- socket.$(EXT)
-
-all: $(OBJS)
-
-clean:; @rm -f *.o *.so
-
-realclean:; @rm -f *.o *.so
- @rm -f core ruby *~ Makefile
-
-.o.so:
- ld -o $*.so $*.o
-
-# Prevent GNU make v3 from overflowing arg limit on SysV.
-.NOEXPORT:
-###
-dbm.o: dbm.c ../ruby.h ../config.h ../defines.h
-socket.o: socket.c ../ruby.h ../config.h ../defines.h ../io.h